5
5
6
6
set_colors
7
7
8
- echo -e " ${BLUE} This is ROS setup sript${NOCOLOR} "
8
+ echo -e " ${BLUE} This is ROS Melodic setup sript${NOCOLOR} "
9
9
read -p " Do you wish to start the installtion? [Y/n]" -n 1 -s ans && echo
10
10
[ " ${ans} " != " n" ] || exit 0
11
11
@@ -14,14 +14,14 @@ sudo apt update && sudo apt upgrade -y
14
14
[ $? -eq 0 ] || error " Failed to update apt-get, aborting..."
15
15
echo -e " ${GREEN} System update done${NOCOLOR} "
16
16
17
- echo -e " ${BLUE} Installing ROS dependencies${NOCOLOR} "
17
+ echo -e " ${BLUE} Installing ROS Melodic dependencies${NOCOLOR} "
18
18
install_rosdeps
19
- [ $? -eq 0 ] || error " Failed to install ROS dependencies, aborting..."
19
+ [ $? -eq 0 ] || error " Failed to install ROS Melodic dependencies, aborting..."
20
20
echo -e " ${GREEN} ROS dependencies installation done${NOCOLOR} "
21
21
22
- echo -e " ${BLUE} Installing ROS${NOCOLOR} "
22
+ echo -e " ${BLUE} Installing ROS Melodic ${NOCOLOR} "
23
23
install_ros
24
- [ $? -eq 0 ] || error " Failed to install ROS, aborting..."
24
+ [ $? -eq 0 ] || error " Failed to install ROS Melodic , aborting..."
25
25
echo -e " ${GREEN} ROS installation done${NOCOLOR} "
26
26
27
27
echo -e " ${BLUE} Installing pip modules${NOCOLOR} "
@@ -30,9 +30,9 @@ python3 -m pip install -r requirements.txt
30
30
[ $? -eq 0 ] || echo " ${RED} Failed install pip modules, continuing...${NOCLOR} "
31
31
echo -e " ${GREEN} Pip modules installaion done${NOCOLOR} "
32
32
33
- read -p " Do you wish to install simulator (Gazebo) [Y/n]" -n 1 -s ans && echo
34
- [ " ${ans} " != " n" ] && install_gazebo
35
- echo -e " ${GREEN} Gazebo installation done${NOCOLOR} "
33
+ # read -p "Do you wish to install simulator (Gazebo) [Y/n]" -n 1 -s ans && echo
34
+ # [ "${ans}" != "n" ] && install_gazebo
35
+ # echo -e "${GREEN}Gazebo installation done${NOCOLOR}"
36
36
37
37
read -p " Do you wish to install desktop environment (xfce4) [Y/n]" -n 1 -s ans \
38
38
&& echo
0 commit comments