This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
install.sh
67 lines (53 loc) · 2.26 KB
/
install.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
#
# This is a script for installing the ROS-PyBullet Interface. Please
# inspect this script before running. Run in a terminal using
#
# $ bash install.sh
#
echo "Installing the ROS-PyBullet Interface ..."
# ==========================================================================
# Clone required repositories
cd $(catkin locate)/src
git clone https://github.com/ros-pybullet/custom_ros_tools.git
git clone https://github.com/ros-pybullet/dmp.git
git clone https://github.com/ros-pybullet/ik_ros.git
git clone https://github.com/ros-pybullet/operator_node.git
git clone https://github.com/ros-pybullet/teleop.git
git clone https://github.com/ros-pybullet/ros-keyboard.git
git clone https://github.com/ros-pybullet/ros_kortex.git
mv -v ros_kortex/kortex_description .
rm -rfv ros_kortex
git clone https://github.com/ros-pybullet/nextagea.git
mv -v nextagea/nextagea_description .
rm -rfv nextagea
git clone -b UoE_SLMC https://github.com/ros-pybullet/talos_robot.git
git clone https://github.com/ros-pybullet/exotica.git
git clone https://github.com/ros-pybullet/trac_ik.git
# ==========================================================================
# Install dependancies
# Install SDL (required by ros-keyboard)
# https://www.libsdl.org
sudo apt install libsdl2-dev libsdl2-2.0-0
# Update rosdep and install deps
rosdep update
rosdep install --from-paths ./ -iry
# ==========================================================================
# Build/source workspace
catkin build -s
echo "Completed installation of the ROS-PyBullet Interface"
echo " "
echo " >>>> please run $ source $(catkin locate)/devel/setup.bash"
echo " "
echo "Please try out any of the following examples"
echo " "
echo "roslaunch rpbi_examples basic_example_kuka_lwr.launch"
echo "roslaunch rpbi_examples basic_example_human_model.launch"
echo "roslaunch rpbi_examples basic_example_talos.launch"
echo "roslaunch rpbi_examples pybullet_objects_example.launch"
echo "roslaunch rpbi_examples soft_body.launch"
echo "roslaunch rpbi_examples basic_example_kinova.launch"
echo "roslaunch rpbi_examples basic_example_nextage.launch"
echo "roslaunch rpbi_examples lfd.launch"
echo "roslaunch rpbi_examples pybullet_rgbd_example.launch"
echo "roslaunch rpbi_examples interpolation.launch"