rosflight / rosflight_ros_pkgs

ROS packages for the ROSflight autopilot
http://rosflight.org/
BSD 3-Clause "New" or "Revised" License
86 stars 56 forks source link

Incomplete Dependencies? #55

Closed mmmfarrell closed 4 years ago

mmmfarrell commented 6 years ago

After following the ROS setup instructions in the docs, more dependencies were still necessary.

I am running Ubuntu 16.04.2 LTS with Ros Kinetic on an Odroid XU4.

When trying to catkin_make a workspace that only contains rosflight, the error is this:

Could not find a package configuration file provided by "eigen_stl_containers"
  with any of the following names:

    eigen_stl_containersConfig.cmake
    eigen_stl_containers-config.cmake

This error was solved by installing the ros kinetic eigen-stl-containers package with:

sudo apt-get install eigen-stl-containers

Arsalan66 commented 4 years ago

sir,even after running the command,i'm still getting the error in ros melodic

dpkoch commented 4 years ago

You need to do sudo apt install ros-melodic-eigen-stl-containers

Arsalan66 commented 4 years ago

Thanks for the kind response it worked however i am getting these errors Screenshot from 2019-11-19 23-57-56 and my simulation is empty, kindly help me resolve this Screenshot from 2019-11-19 23-54-53

superjax commented 4 years ago

These are C++ compiler errors from ibvs_sim. I don't know what this is, and is unlikely to be related to rosflight.

If I were you, I would very carefully read each compiler error (the compiler is telling you what is wrong) and solve them one by one. stackoverflow.com is a great resource for solving compiler errors.

This may seem like an insurmountable task at first, but we have all been there, and it's really the only way to learn. Good luck!