larics / uav_ros_simulation

A collection of ROS packages for Gazebo simulations of Ardupilot / PX4 UAV platforms
BSD 3-Clause "New" or "Revised" License
7 stars 1 forks source link

Missing openravepy #24

Closed fzoric8 closed 1 year ago

fzoric8 commented 1 year ago

I've build Dockerfile.focal with: docker build -t uav_ros_simulation .

When i run run_docker.sh UAV takeoffs however, there's no /red/tracker/input topic.

Message in trajectory pane is: Missing openravepy.

I've tried installing openravepy as follows:

I've install rapidjson as follows:

git clone https://github.com/Tencent/rapidjson.
cd rapidjson 
 cmake . && make && make install 

and I've installed openravepy as follows:

cd  # go home
git clone https://github.com/crigroup/openrave-installation
cd openrave-installation
./install-dependencies.sh
./install-osg.sh
./install-fcl.sh
./install-openrave.sh

I don't get missing openravepy, however, python can't locate rospkg, and toppra package now. Which indicates that openrave installation, trashed python deps.

If I add #!/usr/bin/env python3 to the shebang, it again reports missing openravepy. I'll try to install openrave with Python3 support, just reporting that current uav_ros_simulation for Dockerfile.focal is not working ATM. I'll try to solve issue tmrw.