-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[jsk_kinova_robot] Update README for noetic #1906
base: master
Are you sure you want to change the base?
Changes from 2 commits
a310b4e
6ad34b5
6193b0f
6022d95
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ You need to install `conan` (Decentralized, open-source (MIT), C/C++ package man | |
|
||
```bash | ||
sudo apt install python3 python3-pip | ||
python3 -m pip install --user conan | ||
python3 -m pip install --user 'conan<2' | ||
conan config set general.revisions_enabled=1 | ||
conan profile new default --detect > /dev/null | ||
conan profile update settings.compiler.libcxx=libstdc++11 default | ||
|
@@ -69,9 +69,10 @@ mkdir -p ~/kinova_ws/src | |
cd ~/kinova_ws/src | ||
wstool init | ||
wstool merge https://raw.githubusercontent.com/jsk-ros-pkg/jsk_robot/master/jsk_kinova_robot/kinova.rosinstall | ||
wstool merge https://raw.githubusercontent.com/Kanazawanaoaki/jsk_robot/kinova-noetic/jsk_kinova_robot/kinova.rosinstall.${ROS_DISTRO} # Please ignore error if kinova.rosinstall.${ROS_DISTRO} does not exist. # We can remove this line after the https://github.com/ros/collada_urdf/pull/44 is merged | ||
wstool update | ||
cd ../ | ||
source /opt/ros/melodic/setup.bash | ||
source /opt/ros/${ROS_DISTRO}/setup.bash | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NITS: The environment variable There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I put |
||
rosdep install -y -r --from-paths src --ignore-src | ||
catkin build jsk_kinova_startup kinovaeus | ||
source devel/setup.bash | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Current collada_urdf cannot be built on noetic # We can remove this line after the https://github.com/ros/collada_urdf/pull/44 is merged | ||
# https://github.com/ros/collada_urdf/pull/44 | ||
- git: | ||
local-name: collada_urdf | ||
uri: https://github.com/werner291/collada_urdf.git | ||
version: patch-1 | ||
# jsk_model_tools has to be built with patched collada_urdf # We can remove this line after the https://github.com/ros/collada_urdf/pull/44 is merged | ||
# https://github.com/jsk-ros-pkg/jsk_model_tools/pull/254 | ||
- git: | ||
local-name: jsk-ros-pkg/jsk_model_tools | ||
uri: https://github.com/Takuma-Hiraoka/jsk_model_tools.git | ||
version: fix_for_python3-python2_compatible |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is okay with like
https://raw.githubusercontent.com/jsk-ros-pkg/jsk_robot/master/jsk_kinova_robot/kinova.rosinstall.${ROS_DISTRO}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed it. 6022d95