Upgrade version of Pandas

前端 未结 4 631
北恋
北恋 2020-12-03 02:40

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

相关标签:
4条回答
  • 2020-12-03 02:56

    try

    pip3 install --upgrade pandas
    
    0 讨论(0)
  • 2020-12-03 02:58

    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
    0 讨论(0)
  • 2020-12-03 03:13

    Simple Solution, just type the below:

    conda update pandas 
    

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

    0 讨论(0)
  • 2020-12-03 03:22

    According to an article on Medium, this will work:

    install --upgrade pandas==1.0.0rc0

    0 讨论(0)
提交回复
热议问题