Skip to content
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

install open3d failed :( #7145

Open
3 tasks done
parsaCr766295 opened this issue Jan 23, 2025 · 1 comment
Open
3 tasks done

install open3d failed :( #7145

parsaCr766295 opened this issue Jan 23, 2025 · 1 comment

Comments

@parsaCr766295
Copy link

parsaCr766295 commented Jan 23, 2025

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

@timohl
Copy link
Contributor

timohl commented Jan 23, 2025

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants