• Post author:
  • Post category:Pandas
  • Post last modified:March 27, 2024
  • Reading time:10 mins read
You are currently viewing Upgrade Pandas Version to Latest or Specific Version

You can upgrade Pandas to the latest version or to a specific version in several ways on Windows or Linux depending on how you want to update. You can either use the pip install command to upgrade the version of the Python package (in this case pandas) or if you are using conda you can use conda install to upgrade Pandas.

Note: If you already have a Pandas version installed and you getting errors while upgrading to a higher version, sometimes uninstalling the existing version may resolve the issue. you can use sudo pip uninstall pandas to uninstall on a Linux server. Install the latest Pandas version on Windows if you don’t have it.

Related: Using PIP to Upgrade itself to Latest or Specific Version

1. Upgrade Pandas to Latest Version Using Pip

If you are using pip, you can upgrade Pandas to the latest version by issuing the below command. If you are not aware, PIP is a package management system used to install and manage software packages written in Python. Before upgrading the version it’s always a best practice to check the pandas version installed on your system.

You can run this pip command either from the Linux shell, Windows command tool, or from the Anaconda command prompt to upgrade Python packages.

Note: On Windows make sure you have administrator access in order to run this command. On Linux make sure you have sudo access to root.


# Using pip3 to upgrade pandas
pip3 install --upgrade pandas

# Alternatively you can also try
python -m pip install --upgrade pandas
Upgrade Pandas Latest Version

If you don’t have PATH setup for python/pip, you will get an error; so make sure you have PATH set-up on Linux and on Windows to run pip commands.

The above command upgraded my Pandas version to 1.3.1 on my laptop which is the latest version at the time of writing this article.

On Linux, if you get an access issue, run by adding sudo to suffix like sudo pip3 install --upgrade pandas.

2. Upgrade Pandas to Specific Version

In case, if you do not want the latest version instead you want to upgrade to a specific version, you can do this using the below command. If you are eventually planning to upgrade the production system to a specific version, make sure the version you are upgrading doesn’t have any security issues and is stable.


# Upgrade to specific version
pip install pandas==specific-higher-version

3. Check Pandas Version From the Command Line

By using the below command you can check the Pandas upgraded version from the command line.


# List all packages
pip3 list
Upgrade Pandas Latest Version

As you see above list, Pandas has upgraded to the 1.3.1 version.

4. Upgrade Pandas Version using Conda (Anaconda)

If you are using Anaconda distribution, you can use conda install to upgrade Pandas to the latest version.


# Using conda install
conda install -c anaconda pandas 

Alternatively, you can also upgrade using conda update command.


# Use conda update
conda update pandas

To upgrade Pandas to a specific version


# Upgrade to specific version of pandas
conda update pandas==0.14.0

Frequently Asked Questions on Upgrade Pandas Version to Latest or Specific Version


How do I upgrade Pandas to the latest version?

To upgrade Pandas to the latest version, you can use the pip install --upgrade pandas command.

How can I install a specific version of Pandas?

If you want to install a specific version of Pandas, you can use the pip install pandas==<desired_version> command. Replace <desired_version> with the version number you want to install. For example, to install Pandas version 1.2.3 pip install pandas==1.2.3

How do I check my current Pandas version?

You can check your current Pandas version by running the following command in a Python environment. For example, print(pd.__version__)

How can I upgrade Pandas in a Jupyter Notebook?

You can upgrade Pandas from a Jupyter Notebook. Simply open a new cell and run the !pip install --upgrade pandas command

Conclusion

In this article, you have learned how to upgrade to the latest version or to a specific version using pip and conda commands. Note that to install Pandas, you may need access to Windows administration or Unix sudo to root access.

Happy Learning !!

References

Naveen Nelamali

Naveen Nelamali (NNK) is a Data Engineer with 20+ years of experience in transforming data into actionable insights. Over the years, He has honed his expertise in designing, implementing, and maintaining data pipelines with frameworks like Apache Spark, PySpark, Pandas, R, Hive and Machine Learning. Naveen journey in the field of data engineering has been a continuous learning, innovation, and a strong commitment to data integrity. In this blog, he shares his experiences with the data as he come across. Follow Naveen @ LinkedIn and Medium

Leave a Reply