5

I use pyCharm software in windows 10, and when I tried to install open3d the following error appeared:

ERROR: Could not find a version that satisfies the requirement open3d (from versions: none)
ERROR: No matching distribution found for open3d

I tried to install it using cmd but the same error appeared, also pip version is 20.1.1. Image

Yazan Alatoom
  • 127
  • 1
  • 1
  • 11

2 Answers2

3

Solved: by installing python version 3.77 and run code using it instead of 3.8

Yazan Alatoom
  • 127
  • 1
  • 1
  • 11
3

If you can't seem to upgrade open3d to version 0.13.0;

Upgrade to the latest pip version

python3 -m pip install --upgrade pip

and

sudo pip3 install open3d==0.13.0

Hope that works.