How to update Pandas from Anaconda and is it possible to use eclipse with this last?

后端 未结 3 1521
旧时难觅i
旧时难觅i 2020-12-01 10:31

I have installed Python via Anaconda using the doc at http://www.kevinsheppard.com/images/0/09/Python_introduction.pdf and my Pandas version is 0.13.1.

However, sinc

相关标签:
3条回答
  • 2020-12-01 10:59

    The answer above did not work for me (python 3.6, Anaconda, pandas 0.20.3). It worked with

    conda install -c anaconda pandas 
    

    Unfortunately I do not know how to help with Eclipse.

    0 讨论(0)
  • 2020-12-01 11:05

    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). See this document for a detailed instruction.

    0 讨论(0)
  • 2020-12-01 11:19

    try

    pip3 install --user --upgrade pandas
    
    0 讨论(0)
提交回复
热议问题