This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Installation of Intel realsense on ubuntu (Ubuntu 18.04.5 LTS) #114
Comments
dbgarasiya
changed the title
Installation of Intel realsense on ubntu (Ubuntu 18.04.5 LTS)
Installation of Intel realsense on ubuntu (Ubuntu 18.04.5 LTS)
Jan 4, 2021
Finaly i solved !!!!!!!!!!! |
@dbgarasiya Could you share your solution? I have the same issue.
|
I found the cause and fix of the problem. Cause: Hard-coded Gazebo version in the installation scriptrobot_devkit/packages/turtlebot3/deps/20-turtlebot3.sbc.deps Lines 29 to 31 in 9e410c6
Content of the installation script: https://raw.githubusercontent.com/ignition-tooling/release-tools/master/one-line-installations/gazebo.sh GZ_VER=11
command_exists() {
command -v "$@" > /dev/null 2>&1
} Fix: Download the script and modify.# Uninstall Gazebo 11 installed by RDK installation script.
$ dpkg -l | grep gazebo
$ sudo apt-get remove <package>
$ wget https://raw.githubusercontent.com/ignition-tooling/release-tools/master/one-line-installations/gazebo.sh You only need a small change GZ_VER=9
command_exists() {
command -v "$@" > /dev/null 2>&1
} $ bash gazebo.sh
$ gazebo --version
Gazebo multi-robot simulator, version 9.16.0
Copyright (C) 2012 Open Source Robotics Foundation.
Released under the Apache 2 License.
http://gazebosim.org Then comment out gazebo installation: robot_devkit/packages/turtlebot3/deps/20-turtlebot3.sbc.deps Lines 29 to 31 in 9e410c6
Now the installation should work. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I can't able to install intel-ros on my ubuntu pc
when i run this script = ./demo/rdk_install.sh
I got error while installing gazebo. error about dependency
when i install gazebo 9 and then run script it automatically delete and install gazebo11
when i install gazebo 11 and then run script it ask about gazebo9
how can it solve this ?
The text was updated successfully, but these errors were encountered: