Skip to content
Follow
Ubuntu Linux

How to Install NumPy on Ubuntu 24.04

Richard
Written by
Richard
Jan 10, 2025 Updated Jul 13, 2026 3 min read
How to Install NumPy on Ubuntu 24.04
How to Install NumPy on Ubuntu 24.04

NumPy on Ubuntu 24.04 installs using the APT package manager.

NumPy, which stands for Numerical Python, is a free tool for Python that helps with math and science calculations. It gives you strong ways to work with arrays and matrices, plus many math functions.

This library is key for things like understanding math relationships and creating random numbers. NumPy’s main parts run very fast because they use languages like C or Fortran, much quicker than regular Python.

Installing NumPy lets you do fast number crunching right in your Python programs on Ubuntu 24.04. This is a big help for science work and looking at data.

⚡ Quick Answer

You can install NumPy on Ubuntu 24.04 using the APT package manager. Open your terminal and run sudo apt install python3-numpy. This command installs NumPy and any necessary dependencies from the Ubuntu repositories.

Install Python and Pip

You need Python and Pip to install NumPy on Ubuntu 24.04; you can get both easily from your terminal.

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

Install Python and Pip on Ubuntu Linux

NumPy Using APT

The most direct way to install NumPy on Ubuntu 24.04 is by using APT, which retrieves it from Ubuntu’s software sources.

Use the following command to install NumPy:

🐧Bash / Shell
sudo apt install python3-numpy

The command above will install any dependencies and NumPy packages.

Install NumPy Using Python Virtual Environment

Installing NumPy on Ubuntu 24.04 using a Python virtual environment keeps your projects organized and prevents package conflicts. First, install the virtual environment tool by running ‘sudo apt install python3.12-venv’ in your terminal. Then, you can create a new virtual environment for your project before installing NumPy.

First, install the necessary Python environment packages by running this command:

🐧Bash / Shell
sudo apt install python3.12-venv

Now, create a virtual environment named “myenv” with this command:

💻Code
python3 -m venv myenv

Next, activate the environment by running the command below.

💻Code
source myenv/bin/activate

With the environment active, you can install the specific version required.

💻Code
pip install numpy==VERSION

Here’s an example:

💻Code
pip install numpy==1.26.3

After that, import NumPy by running the command below.

💻Code
python3
import numpy as np

Print out the NumPy version by running the command below.

💻Code
print(np.__version__)

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

💻Code
deactivate

And that’s it!

Summary:

You can install NumPy on Ubuntu 24.04 using a few different approaches. Here are the key points to remember:

  • Versatile Library: NumPy is essential for numerical and scientific computing, offering various mathematical functions and support for multi-dimensional arrays.
  • Installation Methods: You can install NumPy using the APT method for ease or create a virtual environment for better project dependency management.
  • Python Requirement: Ensure that you have Python and Pip installed before proceeding with the installation of NumPy.
  • Version Control: Installing NumPy in a virtual environment allows you to manage different library versions easily, which is particularly useful for multiple projects.
  • Verifying Installation: Always verify the installation by checking the NumPy version to confirm that the library is set up correctly.

These installation steps ensure that the NumPy library is properly installed and ready for your numerical computing tasks on Ubuntu 24.04.

How do I install NumPy on Ubuntu?

So for this one we need to write the command sudo apt install write here python 3 And after that minus and numpy. So do apt install python 3 minus numpy press Enter. Now give the password.

How to install Python on Ubuntu 24.04 terminal?

Ubuntu 24.04 includes Python 3.12 but does not include pip in the base installation. Install it with sudo apt install python3-pip . For newer Python versions, use python3. 13 -m pip inside a virtual environment.

How to check if NumPy is installed in Ubuntu?

The simplest way I found was to try to build a numpy array and then print it (see code below). If the array prints, numpy is installed, if array doesn't print, numpy is not installed.

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.

📚 Related Tutorials

How to Install Python on Ubuntu Linux
Ubuntu Linux How to Install Python on Ubuntu Linux
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04
How to Install RubyMine on Ubuntu 24.04
Ubuntu Linux How to Install RubyMine on Ubuntu 24.04

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

Leave a Comment

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