升级版熊猫

Sta*_*cey 20 python pandas

我在以下路径的Windows机器上运行python:

C:\WinPython-64bit-3.4.4.1
Run Code Online (Sandbox Code Playgroud)

我正在尝试升级到最新版本的pandas(目前正在运行'0.17.1'),但我遇到了问题.

我查看过以前的帖子,并尝试使用命令行:

c:/>pip install --upgrade pandas
Run Code Online (Sandbox Code Playgroud)

但只是得到了 'pip is not recognised as an internal or external command, operable program or batch file'

任何帮助将非常感激.

谢谢

Tim*_*eed 45

尝试

pip3 install --upgrade pandas
Run Code Online (Sandbox Code Playgroud)


Gil*_*gio 17

键入以下命令:

conda update pandas 
Run Code Online (Sandbox Code Playgroud)

在首选shell中键入此内容(在Windows上,使用cmd).

  • 这对我有用,但我必须以管理员身份运行 cmd 。在 Windows 10 上运行。 (4认同)
  • 这对我有用,除了我不得不在我的Windows 10上使用"anaconda提示" (3认同)