What should I do? Reinstall pip? pip-scripts.py file, is not any more in the directory, I don't know what happened. Can't install/uninstall other modules. How can I fix it? I am using windows 7.
Asked
Active
Viewed 6,751 times
3
-
2Maybe you should give some more information. – Hugius Feb 02 '16 at 08:52
-
I'm sorry for not being clear. I have installed pip some time ago and I have installed some modules. I wanted to install Django and it turned "Can't open C:\Python27\Scripts\pip-scripts.py" What should I do? I wanted to uninstall pip, to install it again, but says the same thing. – skerdilajd hoxha Feb 02 '16 at 17:46
-
I'm sorry I am very bad at Python but I was just mentioning it for other people, so they can help you maybe. – Hugius Feb 02 '16 at 19:02
1 Answers
-2
What you can do:
Python versions python 2.7.9+ and python 3.4+ ship with
pip
. So you can choose any of them to avoid the hassle of getting pip and stuff. But...I think you don't have any special reason to use python 2.7. So I suggest you remove python 2.7, download and install python 3.5 and start using it! As they say: Python 2.x is legacy, Python 3.x is the present and future of the language. Read more.
Then you can install/uninstall any package using
pip
, as pip is the default package manager in newer versions of python. Read pip docs.