ros-env is a collection of simple tools for working with ROS source packages.
The ros-get software uses pip
to install itself. If you don't have
it yet, it is available as python-pip
at Debian and Ubuntu. (Install
using sudo apt install python-pip
.)
pip install ros-get
For development it is recommended to install ros-get
with pip install -e
. This installs a package in editable mode.
If you like to both use and hack ros-get, you can 'install' the software by pointing the installation to the development code.
Make ros-get available locally, eg by download or cloning the repository, for example
git clone https://github.com/Rayman/ros-get.git
Install using
pip
with the editable option-e DIR
.cd ros-get pip install --user -e .
The final
.
says thatpip
should redirect theros-get
command relative to this directory (to./src/ros-get
).
TODO: create a workspace
ros-get install tue_config
ros-get remove tue_config
ros-get update
Comparison with tue-env
- Separation between distro definition and the tool
- Distro definition according to REP 143
- Dependency definition according to REP 112
- Parallel git clone/pull
- Python (instead of bash)
pip uninstall ros-get