0

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 FreeSimpleGUI
  •   + CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    
    
    
    
    

I tried to install FreeSimpleGui

2
  • You do not have pip installed on your computer and should get it from pip.pypa.io/en/stable/installation Commented Jan 15 at 22:03
  • I always just use python3 -m ensurepip to install pip. Commented Jan 16 at 9:26

1 Answer 1

2

It seems like Python and pip are not installed or not properly configured in your system's path or you're not using the correct Python environment in PyCharm.

Please run:

python --version
python -m pip --version

If these commands do not work, Python is not installed or the installation is not correctly set up. You’ll need to install Python.

Python automatically includes pip, download python here https://www.python.org/downloads/

If the error persists, Download get-pip.py here https://bootstrap.pypa.io/get-pip.py

Run it using python - python get-pip.py

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.