Get Pip (Python file from Pypa.io ) on Windows 10 cannot be retrieved on my laptop. I followed all the instructions pypa.io - Installation , however, when I tried to execute the file, despite many attempts to fix it, it says:
ERROR: To modify pip, please run the following command: C:\Python27\python.exe -m pip
So, I ran C:\Python27\python.exe -m pipand then displayed another error message:
C:\Python27\python.exe: No module named pip
Then I consulted with my friend, and he said that the second error message is obviously not a file error, but (now I reflect) is quite logical. Of course, it says that there is no module called pip, because that is what I am trying to load. Then it occurred to me that Python should think that I already have this, because it asks me to change pip. So I looked into it and saw that I have a folder with pyramids, but inside it has nothing to do with Python.
So, it made me think, why is it not loading? or Why does he think I already have this?
source
share