-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Can't import open3d #2903
Comments
Hi @jonnymaserati I was not able to reproduce this issue in an Ubuntu 20.04 docker container with Python 3.8 using a |
Hi there @ssheorey It's the same regardless of how I install it, I've tried pip also. I've tried with a clean env and same thing. |
@errissa Possibly relevant issue: |
Hi; I"m experiencing the exact same issue. I had Open3D 0.10.0 installed, uninstalled it - deleted the folder and then did a pip install open3d. The package installs fine, but when you try to import Open3D, I get this error:
Debain 10, Macbook Pro 2009. |
I got the same issue. Debian GNU/Linux 10 (buster) conda create --name open3d python=3.8 -y
conda activate open3d
pip install open3d
python
import open3d as o3d
|
Can you paste the output of: |
(open3d) mhahner@hox:/home/mhahner
$ pip show open3d
Name: open3d
Version: 0.13.0
Summary: Open3D: A Modern Library for 3D Data Processing.
Home-page: http://www.open3d.org
Author: Open3D Team
Author-email: [email protected]
License: MIT
Location: /scratch_net/hox/mhahner/apps/anaconda3/envs/open3d/lib/python3.8/site-packages
Requires: matplotlib, pygments, wheel, jupyterlab, pandas, ipywidgets, jupyter-packaging, pyyaml, scikit-learn, numpy, pillow, numpy, tqdm, setuptools, addict
Required-by:
(open3d) mhahner@hox:/home/mhahner
$ ldd /scratch_net/hox/mhahner/apps/anaconda3/envs/open3d/lib/python3.8/site-packages/open3d/cpu/pybind.cpython-38-x86_64-linux-gnu.so
linux-vdso.so.1 (0x00007ffcb9fac000)
libgomp.so.1 => /usr/lib/x86_64-linux-gnu/libgomp.so.1 (0x00007fa13c2e8000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fa13c2c7000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fa13c2bd000)
libudev.so.1 => /lib/x86_64-linux-gnu/libudev.so.1 (0x00007fa13c297000)
libGL.so.1 => /usr/lib/x86_64-linux-gnu/libGL.so.1 (0x00007fa13bf58000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fa13bdd4000)
libc++.so.1 => not found
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fa13bdcd000)
libX11.so.6 => /usr/lib/x86_64-linux-gnu/libX11.so.6 (0x00007fa13bc8c000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fa13bb09000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fa13baef000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fa13b92e000)
/lib64/ld-linux-x86-64.so.2 (0x00007fa1442a6000)
libnvidia-tls.so.418.197.02 => /usr/lib/x86_64-linux-gnu/libnvidia-tls.so.418.197.02 (0x00007fa13b728000)
libnvidia-glcore.so.418.197.02 => /usr/lib/x86_64-linux-gnu/libnvidia-glcore.so.418.197.02 (0x00007fa139ab4000)
libXext.so.6 => /usr/lib/x86_64-linux-gnu/libXext.so.6 (0x00007fa1398a2000)
libxcb.so.1 => /usr/lib/x86_64-linux-gnu/libxcb.so.1 (0x00007fa139878000)
libXau.so.6 => /usr/lib/x86_64-linux-gnu/libXau.so.6 (0x00007fa139674000)
libXdmcp.so.6 => /usr/lib/x86_64-linux-gnu/libXdmcp.so.6 (0x00007fa13946c000)
libbsd.so.0 => /usr/lib/x86_64-linux-gnu/libbsd.so.0 (0x00007fa139452000) |
I am facing the identical issue as @MartinHahner is reporting. Debian GNU/Linux 10 (buster) |
Same issue here, could you please help with it? |
Issue resolved in #3647 |
I have successfully imported open3d in my terminal by writing "pip install open3d" but then when I go into my Pycharm and write "import open3d as o3d" it says " ModuleNotFoundError: No module named 'open3d' ". How do I fix this? |
This question is unrelated to this issue. Please ask this as a question here: https://github.com/isl-org/Open3D/discussions Very likely PyCharm is using a virtual environment and you need to install open3d inside that virtual environment. Or change the PyCharm virtual environment to the one with open3d installed. See PyCharm documentation for details. |
I'm getting this error
|
@shivam280699 If you are use Poetry to install Open3D, your issue may be: |
IMPORTANT: Please use the following template to report the bug.
Describe the bug
When I try
import opend3d as o3d
I get the following Exception:To Reproduce
Steps to reproduce the behavior:
import open3d
Expected behavior
import the module.
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: