Self-paced

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Bootcamp

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast
โ† Back to How to's
Edit on Github

How to install python pandas?

Written by:

The Pandas library in Python is a very important resource for a developer when working with a large amount of data in Python. In this article, we will see how to install this library step by step on Windows, MacOS, and Ubuntu (Linux). If you are interested in a ๐Ÿ‘†๐Ÿฝ Interactive tutorial on Pandas python.

Command to install pandas:

1pip install pandas

Once the installation is complete, verify that pandas was installed correctly by running the following code in an integrated development environment like visual studio code.

1import pandas as pd 2print(pd.__version__) # Output: 1.5.2

The version of pandas may vary, however, it will look similar to this format.

Alternatively, if you want to know more information, you can run the following command in the terminal which will show you more detailed information about this library.

1$ pip show pandas

(output) in the terminal:

1Name: pandas 2Version: 1.5.2 3Summary: Powerful data structures for data analysis, time series, and statistics 4Home-page: https://pandas.pydata.org 5Author: The Pandas Development Team 6Author-email: pandas-dev@python.org 7License: BSD-3-Clause 8Location: C:\Users\57320\AppData\Local\Programs\Python\Python311\Lib\site-packages 9Requires: numpy, numpy, python-dateutil, pytz

This information may vary depending on the version of Pandas you have installed and in which folder you have installed it.

More details on How to Install Pandas?

To install Pandas, you must first ensure that you have Python and the pip package manager installed on your computer. To do this, you must open a terminal, then execute the following commands:

1$ python --version # checks if you have Python installed 2 3$ pip --version # Checks if you have the pip package installed

If you do not yet have Python installed, go to the install python page, choose the version of Python you want to install, and follow the instructions.

Normally, the pip package is already installed with Python, but if for some reason it is not installed or you want to update it, you can do so with the following commands:

1$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py 2$ python get-pip.py

Now that you have confirmed that you have Python and the pip package installed correctly, you can install the Pandas library on your computer by writing the following command in the terminal:

1$ pip install pandas

Once the installation is finished, you can verify that it was installed correctly with the command:

1$ pip show pandas

What is Pandas in Python?

Pandas is a Python library that allows you to analyze and manipulate data. This library is widely used in Python development in areas such as data science, Machine learning, artificial intelligence, among many others.

One advantage of Pandas is that you can integrate it with other Python libraries like NumPy. The integration of Pandas with NumPy allows you to perform data analysis and advanced mathematical operations along with data visualization more efficiently.

How to Update the Version of Pandas?

To update the Pandas library on your computer, you can do so with a very simple command, no matter if your operating system is Windows, MacOS, or Ubuntu (Linux). You can use the same command to update Pandas on any operating system.

To update Pandas, you must first open a terminal. Below is how to do it depending on your operating system.

> Windows
Press the [ windows + R ] keys and then type "cmd"

> MacOS
Press the [ command + space ] keys and then type "Terminal"

> Ubuntu (linux)
Press the [ Ctrl + Alt + T ] keys

Once you have opened the terminal, type the following commands:

1# 2 3 Verify your current version of pandas, example: 1.5.2 4pip show pandas 5 6# Update pandas on your computer 7pip install --upgrade pandas 8 9# Verify your updated version of pandas, example: 2.0.2 10pip show pandas

With the command pip install --upgrade pandas, you will update Pandas on your computer to the latest stable version available. Now you will be able to access the latest features available in this library.

Conclusion

In conclusion, pandas is a very useful library when working with data in Python. This library allows you to analyze and manipulate complex data and you can integrate it with other Python libraries like NumPy for data analysis and visualization. It is a very useful tool in development areas such as Data Science, Machine Learning, and basically for any program that works with a large amount of data in Python.

If you are interested in learning more about how you can use the Pandas library in Machine Learning, I recommend visiting the tutorial on pandas for machine learning, where you will find very useful resources and explanations with code examples and video tutorials that will help you better understand this library and learn to use all the most important features it offers.