-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·27 lines (20 loc) · 983 Bytes
/
install.sh
File metadata and controls
executable file
·27 lines (20 loc) · 983 Bytes
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
# #!/bin/bash
# # 参考①:https://demikko-no-bibouroku.hatenablog.com/entry/2020/08/11/015340
# # 参考②:https://qiita.com/ryu_software/items/d13a70aacfc6a71cacdb#%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB
echo "╔══╣ Install: Sobits Navigation Stack (STARTING) ╠══╗"
sudo apt update
sudo apt install -y \
ros-$ROS_DISTRO-navigation2 \
ros-$ROS_DISTRO-nav2-bringup \
ros-$ROS_DISTRO-nav2-map-server \
ros-$ROS_DISTRO-nav2-lifecycle-manager \
ros-$ROS_DISTRO-slam-toolbox \
ros-$ROS_DISTRO-pointcloud-to-laserscan \
ros-$ROS_DISTRO-rmw-cyclonedds-cpp \
xterm \
zenity
git clone -b $ROS_DISTRO-devel https://github.com/TeamSOBITS/explore_ros2.git
git clone -b $ROS_DISTRO-devel https://github.com/TeamSOBITS/flex_nav.git
echo export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp >> ~/.bashrc
export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
echo "╚══╣ Install: Sobits Navigation Stack (FINISHED) ╠══╝"