How to Install Pandas on Ubuntu 24.04

Richard
Written by
Richard
Dec 12, 2024 Updated Mar 20, 2026 2 min read
How to Install Pandas on Ubuntu 24.04

You install the Pandas library on Ubuntu 24.04 using either the `apt` package manager or the `pip` Python package installer.

Pandas is an essential open-source Python library for data manipulation and analysis, providing high-performance, easy-to-use data structures like DataFrames.

For example, you can typically install Pandas for Python 3.12 (the default on Ubuntu 24.04) with the command `sudo apt install python3-pandas`.

This guide shows you how to get this powerful tool ready for your data science work on your Ubuntu 24.04 system.

⚡ Quick Answer

Install Pandas on Ubuntu 24.04 using `sudo apt update && sudo apt install python3-pandas` for the APT method, or `sudo apt install python3-pip && pip3 install pandas` for the pip method. Verify the installation by running `python3 -c “import pandas as pd; print(pd.__version__)”`.

Install Pandas APT

The quickest way to install Pandas is to use the APT package manager included with Ubuntu.

Note: Using APT to install Pandas might not necessarily give you the latest version.

To install it, run the command below.

🐧Bash / Shell
sudo apt update
sudo apt install python3-pandas

The command will install pandas along with all its required dependencies.

To check if pandas was installed, use the command below.

💻Code
python3 -c "import pandas as pd; print(pd.__version__)"

It should show the version number.

Install pandas using pip

Another way to install pandas in Ubuntu is to use the pip package manager.

First, install pip on Ubuntu.

🐧Bash / Shell
sudo apt update
sudo apt install python3-pip

Once pip is installed, you can import the pandas module with this command:

💻Code
python
import pandas as pd

To verify whether it’s installed via pip, run the command below.

💻Code
print(pd.__version__)

The command should return the panda’s version number.

Install pandas using a Python virtual environment

Another handy way to install pandas on Ubuntu is by using Python’s virtual environments.

First, make sure Python pip is installed and then install its virtual environment package.

🐧Bash / Shell
sudo apt install python3-pip
sudo apt install virtualenv

Next, create a new project named project_env within the virtual environment.

💻Code
virtualenv project_env

Then, activate the environment.

💻Code
source project_env/bin/activate

After that, install pandas.

💻Code
pip3 install pandas

Now, import the panda’s modules.

💻Code
python
import pandas as pd

Check where pandas is installed.

💻Code
print(pd.__version__)

Once you’re finished, you can deactivate the virtual environment by running the command below.

💻Code
deactivate

That should wrap things up!

Conclusion:

You’ve got several ways to install Pandas on Ubuntu 24.04, letting you pick what works best. Here are the key points:

  • APT Package Manager: Quick and straightforward, though it may not provide the latest version.
  • Pip Package Manager: Offers flexibility in managing packages and ensures you have access to the latest updates.
  • Python Virtual Environment: Ideal for project-specific installations, preventing conflicts between package versions.
  • Verification: Always verify the installation by checking the Pandas version to ensure it is installed and functioning.

With these options, you can effectively use Pandas for your data analysis and project manipulation needs.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *

Exit mobile version