Update to Pandas 2.x
I have found success in updating to pandas 2.x by first installing pandas with conda then updating the version with pip. Here are my steps:
Create the environment
conda create --name movies
Activate the environment
conda activate movies
Install Pandas and Numpy
conda install pandas numpy pip
Upgrade pandas to a specific version
pip install --upgrade pandas==2.0.1
Those are the steps to get get a new environment, download the basic packages, and then install pandas 2.0.1.
Comments
Post a Comment