Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

install open3d failed :(

Open parsaCr766295 opened this issue 1 year ago • 4 comments

Checklist

Steps to reproduce the issue

just to pip install open3d

Image Image

Error message

Defaulting to user installation because normal site-packages is not writeable

ERROR: Could not find a version that satisfies the requirement open3d==0.18.0 (from versions: none)
ERROR: No matching distribution found for open3d==0.18.0

Open3D, Python and System information

- Operating system: Windows 11 64-bit
- Python version: Python 3.13 / output from `import sys; print(sys.version)`
- Open3D version: output from python: `print(open3d.0.18.0)`
- System architecture: x86 / arm64
- Is this a remote workstation?: no
- How did you install Open3D?: pip
- Compiler version (if built from source): n/a

Additional information

No response

parsaCr766295 avatar Jan 23 '25 08:01 parsaCr766295

Open3D just added support for Python 3.12 with 0.19.0, but you are using Python 3.13. Also, your error message states, that it wants to install open3d==0.18.0, but latest version is 0.19.0.

I would recommend using a virtual environment like venv with a pyproject.toml or requirements.txt defining your dependencies. Personally, I am using uv for that, which can also help with changing your Python version:

uv init --python 3.12 # Initilize your project with python version 3.12 (also creates some starter files)
uv venv # Create a virtual environment
uv add open3d # Install open3d to your venv
. .venv/scripts/activate # Enable your venv
python myapp.py # Run your script

timohl avatar Jan 23 '25 10:01 timohl

any plans for 3.13 ?

arpu avatar Apr 03 '25 22:04 arpu

Uhm.. why is there no support for Python 3.13?

mbUSC avatar Sep 08 '25 02:09 mbUSC

bump - support for py3.13 plz

SPOOKEXE avatar Sep 28 '25 18:09 SPOOKEXE