Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrade version of Pandas

Tags:

python

pandas

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'.

like image 986
Stacey Avatar asked Jun 21 '16 20:06

Stacey


People also ask

How do I update pandas in Anaconda Navigator?

Simply type conda update pandas in your preferred shell (on Windows, use cmd; if Anaconda is not added to your PATH use the Anaconda prompt). You can of course use Eclipse together with Anaconda, but you need to specify the Python-Path (the one in the Anaconda-Directory).

How do I specify pandas version?

To verify the version number of pandas, we can use this __version__ built-in attribute provided by pandas, this will return you the number specifying which version of pandas we have.


1 Answers

try

pip3 install --upgrade pandas 
like image 170
Tim Seed Avatar answered Oct 05 '22 20:10

Tim Seed