Update Pandas Version

I am using Python on a Windows computer in the following way:

C:\WinPython-64bit-3.4.4.1

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

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

c:/>pip install --upgrade pandas

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

+15
source share
3 answers

try

pip3 install --upgrade pandas
+33
source

A simple solution , just type below:

conda update pandas 

Enter this in your preferred shell (on Windows use cmd).

+15
source

Add the C: \ WinPython-64bit-3.4.4.1 \ python _ *** \ Scripts folder to your system PATH by doing the following:

  • Select "Start", select "Control Panel." double-click System and select the Advanced tab.
  • Select environment variables ....

  • In the "Edit System Variable" window (or "New System Variable"), specify the value of the PATH .... environment variable.

  • Reopen Command Prompt Window
+1
source

All Articles