Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 windows 10 中使用 pyCharm 软件,当我尝试安装 open3d 时出现以下错误:
ERROR: Could not find a version that satisfies the requirement open3d (from versions: none) ERROR: No matching distribution found for open3d
我尝试使用 cmd 安装它,但出现了同样的错误,pip 版本也是 20.1.1。 图片
已解决:通过安装 python 版本 3.77 并使用它而不是 3.8 运行代码
如果您似乎无法将 open3d 升级到 0.13.0 版;
升级到最新的 pip 版本
python3 -m pip install --upgrade pip
和
sudo pip3 install open3d==0.13.0
希望有效。