Home > Software design >  Python Pycharm package requirements are not satisfied error
Python Pycharm package requirements are not satisfied error

Time:07-09

I have a python script and i want to run it on pycharm but when I try that I get error because pycharm can't include requirements to that project.

I am adding steps as a screenshot to let you know what I see.

i click install requirements here

i click install here

then thats what i see

I'm trying to solve this problem but I can't find any solution and I don't know python too much. Can anyone help?

CodePudding user response:

As per the proposed solution from the error snapshot:

proposed_solution

you need to upgrade the pip version first using the following command:

$ python -m pip install --upgrade pip

CodePudding user response:

did you tried first instaling "pip" and after using "pip install 'package name' " command?

  • Related