You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
Checklist
main
branch).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
Additional information
No response
The text was updated successfully, but these errors were encountered: