Unable to run pip in Windows 10

Terry Reedy tjreedy at udel.edu
Wed Oct 11 14:00:14 EDT 2017


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