'pip' is not recognized after trying to upgrade it in pycharm - python

Pip was working fine. I used it through the terminal in pycharm to install various packages. Pycharm told me to upgrade pip using a pip command. After doing so an error was thrown out. And now I get the message "ModuleNotFoundError: No module named 'pip'" in pycharm and the message "'pip' is not recognized as an internal or external command,
operable program or batch file." in cmd. From what I have read it is because I used a different terminal and it wasn't located in the right place. The fix apprently, use get-pip.py. After trying this, it still doesn't work. I'm not very clued up on how this all works, any help is greatly appreciated!

Try adding pip to your path.
For Windows there is a simple step by step tutorial on YT:
https://www.youtube.com/watch?v=UTUlp6L2zkw
Or have a look here:
https://windowsreport.com/pip-not-recognized/

Related

Everytime i try to install Django using "pip install django" on my command prompt why does this come up?

pip install Django
'pip' is not recognized as an internal or external command,
operable program or batch file.
Well, this is an error you'll have to face multiple times in the future. It's pretty self-explanatory. It means that 'pip' does not exist in your system. To fix this either: 1. Reinstall python (using the installer) and make sure that you've checked the 'pip' checkbox OR 2. Download 'pip.exe' manually and then add it to 'PATH'.
To expand on what Tony has said. you should either reinstall python but since you are trying to use pip already. I am going to guess you already have python and if you do then find the python location (default should be: C:\program files (x86)\Python3\bin) and then add to path.

Plaidml wont setup: 'plaidml-setup' is not recognized as an internal or external command

I am on a windows machine, and I am attempting to set up plaidml after installing using the "plaidml-setup" command, but it does not work. I keep getting the "'plaidml-setup' is not recognized as an internal or external command, operable program or batch file." error. I have already installed plaidml using the "pip install -U plaidml-keras" command, and have tried uninstalling and reinstalling it.
I've searched online to solve the issue but cannot find why the command will not work and allow me to chose my AMD gpu. The only information I was able to find were people repeating the "pip install -U plaidml-keras" and "plaidml-setup" commands.
The console doesn't recognize the command, because you are trying to call a program which does not exist in the location you are in. You are either in the wrong location (go to the correct one by typing cd [path]) or call the program with the correct name.
Assuming you computer is configured like mine, you want to navigate to C:\Python38\Lib\site-packages\plaidml
and run ./plaidml_setup.py or perhaps using python plaidml_setup.py if the former doesn't work for you
source: see this response to a similar ticket

My command prompt doesn't seem to recognize "pip". What can I do to get it to work?

I'm trying to use Tweepy and am trying to install it but typing in
"pip install tweepy" results in:
'pip' is not recognized as an internal or external command, operable
program or batch file."
This is a windows 10 pc. I've been trying this on the command prompt. I've tried changing the path in the windows settings.
'
C:\Users\Orlando>pip install tweepy 'pip' is not recognized as an
internal or external command, operable program or batch file.
I expect it to begin installing Tweepy but instead I get this error message.
Go to environment variables
and add to PATH the following paths
...\PythonXX\
and
...\PythonXX\Scripts\
where ... is your Python installation directory
The reason that pip is not working on your pc is that ENVIRONMENT PATH is not set to your python script directory you can add that simply like:
Press WIN+R and type in SystemPropertiesAdvanced click on Environment Variables button
then search for path in System variables and add a new entry as described by #bleand,
i.e., YOUR PYTHON INSTALLATION DIRECTORY\Scripts
you can find your PYTHON INSTALLATION DIRECTORY by This stackO answer
I this did't works then try this SO answer for installing pip in your system
Try reading Command line and environment for getting the reason why py -m pip install PACKAGENAME works..
Thanks...

Installing PIP Modules

I am having trouble installing any PIP module.
Steps/Precautions I have taken:
I uninstalled Python and downloaded the most recent Python 3.6.2.
PIP seems to be installed already C:\Users\Danc2>C:\Users\Danc2\AppData\Local\Programs\Python\Python36-32\scripts\pip3.6 (also included are files: pip, pip3).
pip install pyperclip returns
'pip' is not recognized as an internal or external command, operable program or batch file.
In using many different forums and typing commands into CMD I come up with results like: "'pip' is not recognized as an internal or external command,
operable program or batch file."
When trying to refer to my folder location: "C:\Users\Danc2>C:\Users\Danc2>C:\Users\Danc2\AppData\Local\Programs\Python\Python36-32\scripts
Access is denied."
Sorry for the common question, but I just cannot figure it out for my individual problem. I appreciate any kind effort to help.
Daniel.
I think you should restart your computer. If that doesn't work, go to Control Panel -> System -> Advanced Settings -> Environment Variables.
In the system variables you should go to Path and add the folder containing the pip.exe to your path.
If your Python installation works at all with the command line, then replacing pip with python -m pip in the command line is likely to fix the issue for you.
Thanks for all the help, guys. Between your answers and another post, I figured it out.
Apparently, my installation location (and program files) for Python was preventing me from installing pyperclip. I bypassed this issue by running CMD as an administrator (see Stack Article .I will still reinstall elsewhere.
Cheers,
Daniel.

How do I install PySpeech for Python 3?

So far I've downloaded and installed distribute and pywin32, however I don't understand how to install PySpeech itself. The directions say to " browse to the folder that you extracted pyspeech-0.5.2.zip to and run the following in the command prompt:
'/python32/python speech.py install' or 'python speech.py install'".
I extracted pyspeech to the desktop and tried both of the above commands in the command prompt. This did not work as I got the following error: "'python' is not recognized as an internal or external command, operable program or batch file." Obviously I'm missing something. Can someone please tell me what I'm doing wrong and how to remedy the situation?
I suspect the issue lies in the "browse to the folder that you extracted..." portion of the directions, as I don't know how that ties into the process. Moreover, forgive my naivete because I've never installed something via command prompt.
You need to add python to your PATH environment variable. See here for instructions, and then you will need to run python.exe setup.py install or whatever (note the .exe).

Categories