How do I update Pandas from Anaconda and can eclipse be used with this latter?

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

However, since I currently have some problems with this version (there is no way to actually calculate the average using resample with a DataFrame), I would like to know how to quickly update the version to 0.14.

I use to work with Python for data analysis from Wes McKinney, but I would like to know if it is worth using eclipse for debugging (even if there are bugs with some version of eclipse to install PyDev) and how can I use it in conjunction with anaconda without any -or conflicts.

+17


source to share


2 answers


Just type conda update pandas

in your preferred shell (on Windows use cmd). You can of course use Eclipse along with Anaconda, but you need to specify the Python-Path (the one in the Anaconda-Directory). For detailed instructions, see the document .



+29


source


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

conda install -c anaconda pandas 

      



Unfortunately I don't know how to help with Eclipse.

+6


source







All Articles