Open3D
Open3D copied to clipboard
install open3d failed :(
Checklist
- [x] I have searched for similar issues.
- [x] For Python issues, I have tested with the latest development wheel.
- [x] I have checked the release documentation and the latest documentation (for
mainbranch).
Steps to reproduce the issue
just to pip install open3d
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
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
any plans for 3.13 ?
Uhm.. why is there no support for Python 3.13?
bump - support for py3.13 plz