Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am running Python on a Windows machine at the following path:

C:WinPython-64bit-3.4.4.1

I am trying to upgrade to the latest version of pandas (currently running '0.17.1') but am having problems.

I have looked at previous posts and have tried on the command line using :

c:/>pip install --upgrade pandas

but just got 'pip is not recognised as an internal or external command, operable program or batch file'.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
282 views
Welcome To Ask or Share your Answers For Others

1 Answer

try

pip3 install --upgrade pandas

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...