-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbbbl_install_rc.sh
executable file
·30 lines (20 loc) · 1.14 KB
/
bbbl_install_rc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# EE192 setup script for Beaglebone Blue using only the Robot Control
# Library. Run this only once.
# INSTALL THE ROBOT CONTROL LIBRARY --------------------------------------
# For more information, see http://www.strawsondesign.com/docs
# /librobotcontrol/installation.html
# Specifically, Method 2: Install from Debian Package or Repository
# Download the latest Robot Control Library package from Strawson Design
wget https://github.com/StrawsonDesign/librobotcontrol/releases/download/V1.0.4/librobotcontrol_1.0.4_armhf.deb
# Install the Robot Control Library
sudo dpkg -i librobotcontrol_1.0.4_armhf.deb
# Clone the Robot Control Library source code for reference
git clone https://github.com/StrawsonDesign/librobotcontrol.git
# SET UP TEMPLATE PROJECT ------------------------------------------------
# For more information, see http://strawsondesign.com/docs/librobotcontrol/
# project_template.html
cp -r /usr/share/robotcontrol/rc_project_tepmlate ~/rename_this_project
# OTHER ------------------------------------------------------------------
# Install other packages that Justin thinks are useful
sudo apt-get install vim -y