Caleb
Caleb

Reputation: 39

Unable to install any packages to PyCharm and given error "Could not find a version that satisfies the requirement"

I recently installed PyCharm on my computer. I am trying to install packages for python writing into PyCharm, but I am unable to install any. They all give the same error: "Could not find a version that satisfies the requirement plotly". Plotly is simply an example here. I have inserted an image of the error as well. Any help that can be given is appreciated. enter image description here

Upvotes: 0

Views: 1493

Answers (1)

Jack Rawlins
Jack Rawlins

Reputation: 73

Open up the terminal tab in the bottom left corner, the use pip install to install a package. If you are still having trouble make sure python is in your environmental variables, to do this goto control panel then programs and features, find python select it then hit change and then modify, make sure "pip" is ticked then hit next, make sure "add python to environment variables" is ticked, then hit install. Once that has finished try to install a package again.

Upvotes: 1

Related Questions