-
Notifications
You must be signed in to change notification settings - Fork 52
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
ompl.util._util error #8
Comments
That means ompl is not correctly installed. Could you please take a look at ompl/ompl#609. |
OMPL py-bindings installation errors. You must have |
Hi, |
I have solved that problem on ubuntu20.04. It was hard. I recommand creating a virtual python env instead of using |
I have installed pygccxml&& pyplusplus, but when I excute install_ompl_ubuntu.sh, report errors as: -- The following Python modules were NOT found:
|
Do you have the required python libraries installed correctly in the python environment used by cmake? You can specify the python for cmake with param |
Encountered the same problem and took some time to solve it, and found that the version of pypy3 was incorrect , just upgrage pypy3 and compile ompl again:
|
I solved this problem by using the latest ompl source from github, following this approach: in Run Update my pypy3 install following @koupoo 's guide. Compile ompl with the guide from Github
mkdir -p build/Release
cd build/Release
cmake ../..
# next step is optional
make -j 4 update_bindings # if you want Python bindings
make -j 4 # replace "4" with the number of cores on your machine Don't forget to add py binding path to {your_conda_install}/envs/robogen/lib/python3.9/site-packages/ompl.pth For my installation, py binding path is |
Hey, [ 74%] Built target test_nearestneighbors Any Ideas? |
Hi, I'm the maintainer of OMPL. If possible, I'd recommend using the pre-built Python wheels (available here currently: https://github.com/ompl/ompl/releases/tag/prerelease). We plan to release on PyPI soon. Happy to help with build issues - I'd recommend if possible using the latest version of OMPL, as 1.5.2 has some known issues with compilation. |
Thanks, I clone the latest version from your Github repo. However, I still have a problem with I have no idea how should I integrate this Python wheels with OMPL, as I'm new in this area. I wonder whether is there any other way to use OMPL Python bindings on other platforms (Windows)? Thanks again |
Thanks! I used OMPL 1.5.2 because I had trouble building from the latest source back then (I think it was version 1.6). Thanks for looking into this issue! |
Hi, If any of you are still having trouble installing ompl python binding from source, please take a look at installing it from the pre-built python wheels, see the updated ReadMe for details. |
hi, great work
python execute.py --task_config_path example_tasks/Change_Lamp_Direction/Change_Lamp_Direction_The_robotic_arm_will_alter_the_lamps_light_direction_by_manipulating_the_lamps_head.yaml
grasp the lamps head primitive
Traceback (most recent call last):
File "/ssd/code/RoboGen/pybullet_ompl/pb_ompl.py", line 2, in
from ompl import base as ob
File "/home/qiaojun/miniconda3/envs/robogen/lib/python3.9/site-packages/ompl/base/init.py", line 1, in
from ompl import util
File "/home/qiaojun/miniconda3/envs/robogen/lib/python3.9/site-packages/ompl/util/init.py", line 4, in
from ompl.util._util import *
ModuleNotFoundError: No module named 'ompl.util._util'
ubuntu 20.04
The text was updated successfully, but these errors were encountered: