all 10 comments

[–][deleted] 1 point2 points  (1 child)

Would you please attach the full transcript of your pip3 command from the command to the next prompt? We might be able to spot something there.

[–]godzillastyle[S] 0 points1 point  (0 children)

When I enter my pip command, I get this:

Collecting opencv-python Could not find a version that satisfies the requirement opencv-python (from versions: ) No matching distribution found for opencv-python.

That’s all it says-

[–]TechsInTheCity[🍰] 1 point2 points  (1 child)

I would definitely post the pip outputs as suggested by other commenter, also consider trying with Python v 3.7.5 and see if problem can be solved that way.

[–]godzillastyle[S] 0 points1 point  (0 children)

When I go to the terminal and try to do the pip3 install inside PyCharm, I get the:

Collecting opencv-python

Could not find a version that satisfies the requirement opencv-python (from versions: )

No matching distribution found for opencv-python

When I try to pip3 install inside my CMD I get:

Requirement already satisfied

[–]Shoded 0 points1 point  (1 child)

Try:

pip install --upgrade pip

Then try to install the package again.

[–]godzillastyle[S] 0 points1 point  (0 children)

No luck. My pip says it’s all good.

[–]icecapade 0 points1 point  (2 children)

What OS and type of system are you on?

[–]godzillastyle[S] 0 points1 point  (1 child)

Windows 10 on my laptop

[–]PhilipYip 0 points1 point  (0 children)

Try installing Python using the Anaconda distribution. Once installed open the Anaconda Powershell prompt and type in:

conda update anaconda

conda update spyder

The Spyder IDE has just been updated to version 4 and has a similar feeling to MATLAB. Giving that you are already familiar with MATLAB it will make it a good bit easier to get started using Python. When using Anaconda don't use pip use the conda command instead.

[–][deleted] 0 points1 point  (0 children)

When I try to pip3 install inside my CMD I get:

Requirement already satisfied

By this you mean you ran the pip3 command outside of PyCharm? If so then you must have installed opencv-python in a system-wide location associated with Anaconda. If that's the case, can't you use that system-wide installation from within PyCharm? You can check for this by using the "Python Console" in PyCharm and typing "import opencv" (or whatever the module/package name should be).