Answers for "python pip install not working"

2

python pip not working

Correct command:
python -m pip install modulename
Alternative(if it doesn't work):
py.exe -m pip install modulename
Posted by: Guest on June-11-2020
1

pip install doesn't work

If youre in windows, try:
python -m pip install <lib>
Posted by: Guest on October-15-2020
7

pip install python 3

You cannot just pip install python3 because it is not a library.

If you want to install the latest python3:
https://www.python.org/ftp/python/3.8.2/python-3.8.2.exe
Posted by: Guest on April-02-2020

Code answers related to "python pip install not working"

Python Answers by Framework

Browse Popular Code Answers by Language