Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
installation:full [2013/12/11 20:03] – created gkazhoya | installation:full [2013/12/11 20:07] (current) – removed gkazhoya | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== CRAM installation ====== | ||
- | |||
- | If you don't have the core CRAM components installed yet, check [[installation|here]] first. | ||
- | |||
- | ===== Major CRAM Packages ===== | ||
- | |||
- | * Go to your catkin workspace and use wstool to pull the catkinized CRAM packages from GIT. | ||
- | |||
- | cd ~/ | ||
- | wstool init | ||
- | wstool set cram_NAME --git https:// | ||
- | | ||
- | where NAME is at the moment '' | ||
- | |||
- | wstool update | ||
- | rospack profile | ||
- | source ~/.bashrc | ||
- | |||
- | * Install the packages with rosdep (although at the moment there are probably no system dependencies in those packages, so you can skip this step) | ||
- | |||
- | rosdep install cram_NAME | ||
- | |||
- | * Catkin_make all the packages | ||
- | |||
- | cd .. | ||
- | catkin_make | ||
- | |||
- | * Go to your rosbuild workspace and use wstool to pull the remaining CRAM stacks from GIT: '' | ||
- | |||
- | cd ~/ | ||
- | wstool set cram_NAME --git https:// | ||
- | wstool update | ||
- | rospack profile | ||
- | source setup.bash | ||
- | |||
- | where NAME: '' | ||
- | |||
- | * Rosmake and install all the CRAM packages | ||
- | |||
- | rosdep install cram_NAME | ||
- | rosmake cram_NAME | ||
- | |||
- | * The '' | ||
- | |||
- | roscd | ||
- | wstool set rosjava_jni --git https:// | ||
- | wstool set knowrob --git https:// | ||
- | wstool update | ||
- | rospack profile | ||
- | source ~/.bashrc | ||
- | rosdep install rosjava_jni | ||
- | rosmake rosjava_jni | ||
- | rosdep install knowrob | ||
- | rosmake knowrob | ||
- | If you have a problem with '' | ||
- | Another set of dependencies is on '' | ||
- | |||
- | sudo apt-get install ros-hydro-moveit-full | ||
- | rospack profile | ||
- | source ~/.bashrc | ||
- | And then try to compile CRAM again. | ||
- | |||
- | rosmake cram_STACK | ||
- | If you're getting '' | ||
- | |||
- | Or, you can as well try to compile only those packages from the stack that you need: | ||
- | |||
- | roscd cram_PACKAGE | ||
- | rosmake | ||
- | |||
- | * If you for some reason will want to have the sources of the ROS Lisp packages, they can be found here: '' | ||