pip安装open3d失败
# pip install open3d Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple ERROR: Could not find a version that satisfies the requirement open3d (from versions: none) ERROR: No matching distribution found for open3d
解决:
包名已更改,应该为open3d-python
# pip install open3d-python Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple Collecting open3d-python Downloading https://pypi.tuna.tsinghua.edu.cn/packages/df/e8/6497d43442f5ff0da42c1f3f2db075e10a87cadedd0cd23150443708def1/open3d_python-0.3.0.0-py2.py3-none-any.whl (17.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/17.2 MB 5.9 MB/s eta 0:00:00 Requirement already satisfied: numpy in d:\python312\lib\site-packages (from open3d-python) (1.26.4) Installing collected packages: open3d-python Successfully installed open3d-python-0.3.0.0
标签:cn,python,open3d,install,edu,pip From: https://www.cnblogs.com/hxqmw/p/18518664