ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 2012-04-28 04:05:48 -0500

joq gravatar image

Fuerte introduces a new rosdep implementation, which must be installed via pip, separately from the ROS distribution.

sudo apt-get install python-pip
sudo pip install -U rosdep
sudo rosdep init
rosdep update

See: REP-0125.

Fuerte introduces a new rosdep implementation, which must be installed via pip, separately from the ROS distribution.

sudo apt-get install python-pip
sudo pip install -U rosdep
sudo rosdep init
rosdep update

See: REP-0125.

UPDATE: people building ROS packages from source may want to install these Python packages, too:

sudo pip install -U rosinstall vcstools rospkg
click to hide/show revision 3
mention apt-get install method

Fuerte introduces a new rosdep implementation, which must be installed via pip, separately from the ROS distribution.

sudo apt-get install python-pip
sudo pip install -U rosdep
sudo rosdep init
rosdep update

See: REP-0125.

UPDATE: people building ROS packages from source may want to install these Python packages, too:

sudo pip install -U rosinstall vcstools rospkg

UPDATE2: instead of using pip, the recommended install method on Ubuntu is now:

sudo apt-get install python-rosdep

Fuerte introduces a new rosdep implementation, which must be installed via pip, separately from the ROS distribution.

sudo apt-get install python-pip
sudo pip install -U rosdep
sudo rosdep init
rosdep update

See: REP-0125.

UPDATE: people building ROS packages from source may want to install these Python packages, too:

sudo pip install -U rosinstall vcstools rospkg

UPDATE2: instead of using pip, the recommended install method on Ubuntu is now:

sudo apt-get install python-rosdep

The init and update steps are still necessary.