crigroup / openrave-installation

Bash scripts to install OpenRAVE from source
164 stars 77 forks source link

Issues on a fresh install of 20.04 #20

Open zhangzhihao2020 opened 3 years ago

zhangzhihao2020 commented 3 years ago

when I install openrave in ubuntu2020,I miss this mistake and don't find the way to solve it. << CMake Error at python/bindings/CMakeLists.txt:50 (message): Should have installed pybind11; CMake will exit. -- Configuring incomplete, errors occurred! See also "/home/zzh/git/openrave/build/CMakeFiles/CMakeOutput.log". See also "/home/zzh/git/openrave/build/CMakeFiles/CMakeError.log". make: No targets specified and no makefile found. Stop. make: No rule to make target 'install'. Stop. << If anyone knows the solution,please tell me,thank you!

thoreauA commented 3 years ago

Hi! I am trying to use openrave as well in Ubuntu 20.04 and it seems not an easy task. In your case you had not properly installed pybind11. Look to the file install-dependencies.sh at # Install Pybind, make sure that all the lines are executed and that pybind11 is successfully installed.

nicholasadr commented 3 years ago

Most likely pybind11 installation was skipped in ./install-dependencies.sh due to problem 2 mentioned in #19 (Look for "Please tell me who you are" printout). In that case you need to perform Git authentication beforehand:

git config --global user.email "you@example.com"
git config --global user.name "Your Name"
bjutlss commented 1 year ago

I ran into the same problem, but I think I built pybind11 successfully, and I already have the content in the build folder, but I still have this problem at the last step. My Ubuntu is 20.04, python = 3.9. Can you give me a little help? @nicholasadr

zichunxx commented 1 year ago

Any update on pybind-related problems on Ubuntu 20.04?