Search code examples
pythonpippycharm

Python pip still not recognized


I've been trying to get pip to work with python. I've followed a lot of the guides out there and I still can't seem to get this working. I've downloaded the file from https://bootstrap.pypa.io/get-pip.py. I used the terminal to navigate to it and install. When I go to settings in my project and look under 'interpreter' it shows that the pip package is definitely installed. However, I still get the same message whenever I try to use the pip command

pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

At line:1 char:1

  • pip install dpkt
  •   + CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    
    
    

I don't know what I'm missing here. Any help would be greatly appreciated.


Solution

  • try python -m pip install package-name