Upgrade version of Pandas

Solution 1:

try

pip3 install --upgrade pandas

Solution 2:

Simple Solution, just type the below:

conda update pandas 

Type this in your preferred shell (on Windows, use Anaconda Prompt as administrator).

Solution 3:

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

  1. Select Start, select Control Panel. double click System, and select the Advanced tab.
  2. Click Environment Variables. ...

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

  4. Reopen Command prompt window

Solution 4:

The easiest way to do that is to run the code in the Jupitar notebook

 !pip install -U pandas

If it gives an error message ((Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: Consider using the --user option or check the permissions.)) please add '--user' next the above code. as

!pip install -U pandas --user