Back

Explore Courses Blog Tutorials Interview Questions
+3 votes
5 views
in Python by (3.4k points)
edited by

I read that pip is a replacement for easy_install, Can anyone tell me, How can I install pip using easy_install on windows or there's another better option?

2 Answers

0 votes
by (2k points)

Python 3.4+ have pip builtin, for versions below just follow these instructions:

  1. Download the latest pip version using this link:http://pypi.python.org/pypi/pip#downloads
  2. You need to uncompress it as it's an .rar file.
  3. Download and install the easy installer for windows using http://pypi.python.org/pypi/setuptools
  4. Now copy the uncompressed folder files into C:\Python2x\ folder (copy only contents of folder).
  5. Run python setup.py install
  6. Add the python C:\Python2x\Scripts to the path.

Work Done, Cheers...!!

0 votes
by (32.3k points)

You can use the following command:-

python -m ensurepip

You can use the following video tutorials to clear all your doubts:-

Learn in detail about Python by enrolling in Intellipaat Python Course online and upskill.

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Jul 2, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer
+2 votes
3 answers

Browse Categories

...