Unable to run pip in Windows 10

Michael Cuddehe mcuddehe at strategicga.com
Fri Oct 13 11:49:32 EDT 2017


Thank you!!!
What finally worked.....> py -m pip install pyperclip


-----Original Message-----
From: Terry Reedy [mailto:tjreedy at udel.edu] 
Sent: Wednesday, October 11, 2017 1:00 PM
To: python-list at python.org
Subject: Re: Unable to run pip in Windows 10

On 10/11/2017 10:46 AM, Michael Cuddehe wrote:
> - What exactly did you install?
>>> Latest install: Python 3.5.4 (v3.5.4:3f56838, Aug  8 2017, 02:17:05) [MSC
> v.1900 64 bit (AMD64)] on win32
>>> Downloaded from python.org.
>   - Can you start the Python interpreter?
>>> Yes...works fine.
>     * How exactly did you go about this
>>> ??
>   - How exactly do you try to run pip?
>>> Command prompt: c:\Users\FFC>pip import (module)

Try running instead

...> python -m pip install <package name>

or to specifically ensure that you run 3.5,

...> py -3.5 -m pip install <package name>

and if that fails, copy the entire response.

>   - What exactly happens when you try?
>>> Windows error message: "This app can't run on your PC...."

-- 
Terry Jan Reedy






More information about the Python-list mailing list