can't install/run pip (Latest version of Python)

Terry Reedy tjreedy at udel.edu
Tue Jul 17 03:09:25 EDT 2018


On 7/16/2018 11:03 PM, S Lea wrote:

Some additional info, which allows me to say the following:

> 1) Don't know what do you mean by the traceback.

 >>> 1/o
Traceback (most recent call last):
   File "<pyshell#0>", line 1, in <module>
     1/o
NameError: name 'o' is not defined

The last four lines

> 2) In DOS, pip install pandas

Try the core-developer recommended way to run modules:
python -m pip install pandas
or, if you installed the py launcher and have multiple python versions
py -3.7 -m pip install pandas

If you see something about pip not being installed,
python -m ensurepip

> 3) Yes, in DOS, Win 10

Crucial info.

> 4) 3.7

Allowed me to specify how to specifically launch 3.7.

> 5) Not getting much info

-- 
Terry Jan Reedy




More information about the Python-list mailing list