2

I am using the command line to try to install pip. I am using the command line to install the file. I am using the command "python C:\Users\Lucas\Desktop\get-pip.py install" in the C:\Python27 directory. Below is the error message i receive in the error log:

Exception information:
Traceback (most recent call last):
  File "c:\users\lucas\appdata\local\temp\unpacker-hpeuf5-scratchdir\pip\basecommand.py", line 134, in main
    status = self.run(options, args)
  File "c:\users\lucas\appdata\local\temp\unpacker-hpeuf5-scratchdir\pip\commands\install.py", line 236, in run
    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
  File "c:\users\lucas\appdata\local\temp\unpacker-hpeuf5-scratchdir\pip\req.py", line 1077, in prepare_files
    url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
  File "c:\users\lucas\appdata\local\temp\unpacker-hpeuf5-scratchdir\pip\index.py", line 265, in find_requirement
    raise DistributionNotFound('No distributions at all found for %s' % req)
DistributionNotFound: No distributions at all found for install
BenMorel
  • 31,815
  • 47
  • 169
  • 296
user2905312
  • 41
  • 2
  • 3

4 Answers4

2

Try:

cd C:\Users\Lucas\Desktop
python get-pip.py
Steve Barnes
  • 26,342
  • 6
  • 60
  • 70
0

Do not pass any parameters:

python get-pip.py

or

/path/to/version/python get-pip.py
jpwagner
  • 543
  • 2
  • 8
0

Try this out

sudo python get-pip.py
kero
  • 10,557
  • 5
  • 40
  • 49
Dap
  • 2,252
  • 5
  • 31
  • 42
0

Try doing all these activities using python3 and pip3. That worked for me

alexmac05
  • 56
  • 4