I want to use the compare() function available in Pandas 1.1.0. I am doing an update in Anaconda to Pandas, but it just takes me to 0.25?
3 Answers
Pandas hasn't released v1.1.0 as of now, current PyPI latest version is v1.0.5
Recently pandas released first release candidate you can install this pandas version v1.1.0rc0 using
python -m pip install --upgrade --pre pandas==1.1.0rc0 Please go thorough Pandas 1.1.0rc0
One more way is to clone the pandas-dev/pandas repo locally and build it locally pandas has good resource go thorough Creating development environment
After successfully building, you can check by doing this.
Open python and import pandas
import pandas as pd pd.__version__ # '1.1.0rc0+2.g3e88e170a' # my build version. Note:
pd.__version__is different for everyone if you are building from GitHub locally.
If you have any queries regarding development of pandas they have an active Gitter channel pandas
Comments
Typing conda update pandas should do the job.
4 Comments
Have you tried: conda install pandas=1.1.0.
You may need to add a channel that contains pandas 1.1.0.
Conda forge contains pandas 1.0.5
conda config --add channels conda-forge
pip install --upgrade pandasin conda prompt?conda update condaand then `conda update pandas'