You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: if you already have another full version of ROS installed, the full desktop indigo install will require the removal of multiple existing packages in order resolve dependencies. This includes your current version of Gazebo and related packages.
Next, we need to create a directory for a catkin workspace in order to build any new packages, initialize it as a catkin workspace, and build the workspace.
mkdir -p pomdp_experiment_ws/src
cd pomdp_experiment_ws/src/
catkin_init_workspace
cd ..
catkin_build
The workspace can now be sourced to append the proper paths to ROS environment variables.
source devel/setup.bash
It is helpful-especially if you have multiple versions of ROS on your system-to add the following lines to your .bashrc file. This makes setting the proper ROS distribution much less time-consuming.