4th gen AMD EPYC coming soon Pre-order now

How to Install TensorFlow on Ubuntu: CPU-only or NVIDIA GPU

December 14th, 2023
GPU
How to Install TensorFlow on Ubuntu: CPU-only or NVIDIA GPU

TensorFlow is a household name in deep neural networks developed by the GoogleBrain team. This guide will teach you how to install TensorFlow on Ubuntu 22.04 in two different ways, either with a CPU-only configuration or a compatible NVIDIA GPU.

What is TensorFlow?

TensorFlow is a free and open-source framework for machine learning that offers high performance for complex AI and machine learning operations.

It is commonly used with Python but can run in languages like Java, Javascript, and C++. It provides a set of comprehensive APIs for data processing and model evaluation aimed at deploying machine learning (ML) models.

What is TensorFlow used for?

At its core, TensorFlow is a library primarily used for large-scale numerical computation and deep learning. It is used in various tasks such as predictive analysis, natural language processing, computer vision, and fraud detection, to mention a few.

Prerequisites

To follow this TensorFlow installation tutorial, ensure you have the following in place:

  • An instance of Ubuntu 22.04 with a sudo user configured;
  • SSH access to the instance;
  • Python3 installed.

How to install TensorFlow: Two different ways

This tutorial will show how to install TensorFlow on Ubuntu 22.04 in two different configurations. TensorFlow supports running computations on both CPU and GPU. The first part will detail how to install TensorFlow on a CPU-only system, and the second will demonstrate how to install it with an NVIDIA GPU.

1. How to install TensorFlow: CPU-only system

In the first section of the tutorial, we will demonstrate how to install TensorFlow on a CPU-only system. Follow the steps outlined.

Step 1: Confirm Python3 is installed

To start, ensure that you have Python already installed. Ubuntu 22.04 ships with Python 3.10; you can confirm this as shown.

python3 -V

The output confirms that Python 3.10 is already installed.

check-python-version

Step 2: Install Python virtual environment

The next step is to create a virtual environment - an environment created on top of an existing Python environment that isolates your workspace from the rest of the system environment. The virtual environment isolates TensorFlow and its libraries from the system-wide Python environment.

If you are running a fresh instance of Ubuntu, update the local APT cache or package index.

sudo apt update

Next, Install the Python virtual environment.

sudo apt install python3-venv python3-dev -y

install-python-virtual-environment

Step 3: Create a working directory for TensorFlow

Next, create a working directory for your project and navigate into it.

mkdir my_project  &&  cd my_project

Create the virtual environment using the venv command as shown. In our case, we are creating an environment called my_TensorFlow_venv.

python3 -m venv my_TensorFlow_venv

Then, activate it using the source command.

source my_TensorFlow_venv/bin/activate

Once activated, you should see that the prompt starts with the name of the virtual environment inside parentheses.

create-directory-for-TensorFlow

Step 4: pip install TensorFlow

Finally, install TensorFlow using the pip package manager.

pip3 install --upgrade TensorFlow

The command installs TensorFlow alongside multiple packages and libraries.

install-TensorFlow-ubuntu-22.04

Once complete, you will get a summary of all the installed packages displayed on the terminal. This confirms that the installation of TensorFlow was successful.

TensorFlow-packages-installed

Step 5: Test the installation of TensorFlow

To confirm that you've successfully installed TensorFlow, run the command:

python3 -m pip show TensorFlow

The command displays information such as TensorFlow's version, brief description, home page, and more.

confirm-TensorFlow-installation

Once you are done testing and using TensorFlow, run the deactivate command to revert to your default Linux shell.

deactivate

2. How to install TensorFlow: NVIDIA GPU system

If you have a CPU installed with an NVIDIA GPU card, follow the outlined steps.

***CherryServers dedicated GPU servers provide the ideal infrastructure for data scientists and developers to focus solely on training models. Find out more here.

Step 1: Install CUDA ToolKit and cuDDN packages

To install TensorFlow on an NVIDIA GPU, you need to have a CUDA toolkit and cuDNN libraries installed. Check out how to install NVIDIA drivers and CUDA Toolkit on Ubuntu 22.04.

In this section, we will install the cuDNN package using Miniconda, a free and open-source lightweight version of Anaconda. To install Miniconda, head to the Miniconda website and download the latest installation script for Linux 64-bit.

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

download-miniconda-ubuntu

Next, run the installation script.

bash Miniconda3-latest-Linux-x86_64.sh

Hit ENTER on your keyboard to proceed with the installation process:

run-miniconda-script-ubuntu

Next, type yes to accept the license terms and press ENTER again.

accept-license-terms-miniconda

The installer will then display the installation directory for Miniconda3. By default, this is set to the home directory. Press ENTER to continue.

miniconda-installation-path

Finally, update the shell profile to automatically initialize conda upon system startup by typing yes and hitting ENTER. You can always disable this setting later when conda is activated by running the command:

conda config --set auto_activate_base false

miniconda-installed-ubuntu-22.04

At this point, we've successfully installed conda. To start using it, close the current shell session and open a new one. If you are connected to your instance via SSH, close the session and log in again.

Step 2: Create a Conda environment

Upon successful installation of Miniconda, you will notice that the shell prompt starts with the (base) value.

Next, create a Conda virtual environment. In our case, we have specified tf as the name of the environment.

conda create --name=tf python=3.10

miniconda-create-conda-environment

Next, type y and press ENTER to install the required packages for the environment.

provide-consent-to-install-conda-environment

Next, activate the environment.

conda activate tf

The next step is to install the cuDNN package. We already have CUDA 12.x installed, which is the latest version at the time of publishing this guide.

Step 3: Install cuDNN Package and Libraries

To the cuDNN package using Conda, run the command:

conda install -c conda-forge cudnn

install-cudnn-libraries-conda

Next, configure the system paths for the CONDA environment:

mkdir -p $CONDA_PREFIX/etc/conda/activate.d
echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/' > $CONDA_PREFIX/etc/conda/activate.d/env_vars.sh

The next step is to install TensorFlow using the pip package manager.

Step 4: pip install TensorFlow

With all the prerequisite packages in place, install TensorFlow using the pip package manager.

python3 -m pip install TensorFlow

The following output confirms that all the required packages were installed:

TensorFlow-installed-conda-environment

To confirm that TensorFlow has been successfully installed, run the command shown.

python -c "import TensorFlow as tf; print(tf.random.normal([5, 5]))"

test-TensorFlow-installaton

The command prints out a barrage of information, and at the very end, a 5 X 5 array with random floating point values will be printed out.

To exit from the two conda environments - tf and base environments - run conda deactivate successively on each environment.

conda deactivate

Conclusion

This tutorial showed how to install TensorFlow on Ubuntu 22.04 using two different configurations: using a CPU-only system or an NVIDIA GPU-enabled CPU. For more information about TensorFlow, check out the official website.

Winnie is a seasoned Linux Systems administrator, currently specializing in writing technical Linux tutorials. With over seven years of experience in deploying and working with major Linux distributions such as Ubuntu, Debian, RHEL, OpenSUSE, and ArchLinux, she has written detailed and well-written "How to" Linux guides and tutorials. Winnie holds a Bachelor's Degree in Computer Science from Masinde Muliro University, Kenya and resides in Nairobi, Kenya. She is an expert in authoring Linux and DevOps topics involving Docker, Ansible, and Kubernetes. She currently works as a freelance technical writer and consultant. In her previous roles, she worked in the capacity of an IT support specialist and Linux administrator. Her key roles included offering level 1 and 2 support to both in-house and remote staff and managing and monitoring Linux servers.

Cloud VPS - Cheaper Each Month

Start with $9.99 and pay $0.5 less until your price reaches $6 / month.

We use cookies to ensure seamless user experience for our website. Required cookies - technical, functional and analytical - are set automatically. Please accept the use of targeted cookies to ensure the best marketing experience for your user journey. You may revoke your consent at any time through our Cookie Policy.
build: e4941077.621