User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
cs:getting_started:start [2022/04/15 01:43]
Chris Nathman [Additional Dependencies]
cs:getting_started:start [2022/04/15 01:48]
Chris Nathman [Getting our Code]
Line 61: Line 61:
 ==== Getting our Code ==== ==== Getting our Code ====
 Finally, we need to setup our ROS workspace with the robosub code. Finally, we need to setup our ROS workspace with the robosub code.
-  ​mkdir -p ~/ros/src + 
-  cd ~/ros/src +Create a directory for robosub code and move into it. 
-  git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub.git +<code bash> 
-  git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub_msgs.git +mkdir -p ~/ros/src 
-  git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub_simulator.git+cd ~/ros/src 
 +</​code>​ 
 + 
 +Clone essential robosub repositories. 
 +<code bash> 
 +git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub.git 
 +git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub_msgs.git 
 +git clone https://​gitlab.com/​PalouseRobosub/​Software/​robosub_simulator.git 
 +</​code>​ 
 + 
 +Move back to the ros directory.
   cd ~/ros   cd ~/ros
   colcon build   colcon build