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'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:
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?