File tree Expand file tree Collapse file tree 2 files changed +20
-5
lines changed
Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 44
55Script and Troubleshooting guide to install ROS lunar on MacOS
66
7- ### Trouble Shooting Guide
8-
9- TO DO
7+ ```
8+ git clone https://github.com/vinay0410/install-ros-macos.git
9+ cd install-ros-macos
10+ bash -x install_ros.sh
11+ source ~/ros_catkin_ws/install_isolated/setup.bash
12+ ```
Original file line number Diff line number Diff line change 4848 fi
4949 popd
5050
51+ # Certificate Error on some machines
52+
53+ ruby -ropenssl -e " p OpenSSL::X509::DEFAULT_CERT_FILE"
54+ export SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem
55+
5156sudo -H rosdep init
57+
58+ # if rosdep init fails, do it manually
59+
60+ if [ $? -eq 0 ]; then
61+ wget https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list
62+ mkdir -p /etc/ros/rosdep/sources.list.d/
63+ mv 20-default.list /etc/ros/rosdep/sources.list.d/
64+ fi
65+
5266rosdep update
5367
5468mkdir ~ /ros_catkin_ws
8296
8397
8498./src/catkin/bin/catkin_make_isolated --install -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_BUILD_TYPE=Release
85-
86- # source ~/ros_catkin_ws/install_isolated/setup.bash
You can’t perform that action at this time.
0 commit comments