Install TensorFlow GPU on Windows – A complete guide

TensorFlow is an end-to-end open-source platform for machine learning from Google. If you want to study AI or work on an AI project, setting up a development environment with TensorFlow on a local machine will help you have smooth sailing. GPU (Graphics processing unit) is a specialized processor originally designed to process data simultaneously. It helps to speed up the computation of your deep-learning code. This is a complete guide to installing TensorFlow GPU on Windows. The installation involves many steps. Let’s get started.

Table of Content

  1. Download Nvidia graphics driver
  2. Check software compatibilities at Tensorflow site
  3. Install Visual Studio Community 2019
  4. Install CUDA Toolkit 11.8.0
  5. Install cuDNN 8.6
  6. Install Anaconda3
  7. Create virtual environment
  8. Install Tensorflow 2.10
  9. Install PyCharm
  10. Install additional packages


1. Download Nvidia graphics driver


If you already have a PC with GPU, you can skip this step. If you are going to get a new machine learning PC with GPU, please check CUDA enabled GPU cards before buying one. I suggest you buy a PC with a Nvidia graphic card having at least 12GB GDDR6 or GDDR6X. If you just got a new PC with Nvidia GPU, you go to Nvidia driver download and download the graphic card driver. After downloading, you run the exe file to install.

Nvidia driver downloads


2. Check software compatibilities at Tensorflow site


Normally you get the latest version when installing software. That’s not the case here. You have to check the compatibility between software. Go to TensorFlow install guide to get software requirements. This will help you avoid headaches.

Tensorflow software requirements


3. Install Visual Studio Community 2019

The tensorFlow install guide says “Windows Native Requires Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, and 2019.” Please note it is not the latest version 2022. You go to Visual Studio old downloads to get 2019. After you sign in, select Community 2019 and download.

download vs 2019

When you run the installer, select “code editor” on the right side of the window. Click “Continue” and finish the installation.


4. Install CUDA Toolkit 11.8.0

CUDA is a software layer that gives direct access to the Nvidia GPU’s virtual instruction set and parallel computational elements. According to the TensorFlow install guide, you need CUDA 11.8. Go to the CUDA Toolkit archive at Nvidia, and select CUDA ToolKet 11.8.0. In the next window, select Windows, the version of your operation system, and the installer type, you can download and follow the default to install it.

download cuda toolkit

It is installed at C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\.


5. Install cuDNN 8.6

The Nvidia CUDA® Deep Neural Network Library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. Go to Nvidia’s cuDNN Archive, and download cuDNN v8.6 (not the latest).

download cuda toolkit

Extract the downloaded zip file and copy three subfolders, i.e. include, lib and bin.

cuDNN lib

Paste them to the CUDA install folder at C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\. New files are added to CUDA.

cuda folder

Open the Environment Variables window, and add the following new two paths:
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\bin
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\libnvvp

environment variables


6. Install Anaconda3

Conda is an open-source package and environment management system that runs on Windows, macOS, and Linux. Conda quickly installs, runs, and updates packages and their dependencies. To install, go to Anaconda site to download Anaconda installer, click the download button at the top, or go to the bottom to select the particular version for your PC.

download anaconda

After you run the installer, Anaconda3 is installed at C:\Users\yourusername\anaconda3. It also installs Python 3.10 there. Remember to add the following paths in “Environment Variables”:
C:\Users\yourusername\anaconda3
C:\Users\yourusername\anaconda3\Library\bin
C:\Users\yourusername\anaconda3\Scripts

environment variables

In Windows Start, you can find the Anaconda3 folder. If you cannot find it, search for “Anaconda prompt” in the window search bar at the bottom. Create a shortcut for the Anaconda prompt on your desktop. You will use it a lot.

Anaconda start folder

Run the Anaconda prompt, and a prompt window opens. It shows (base) C:\Users\yourusername>. (base) represents your current environment. “base” is a default env.

anaconda prompt

You can run conda or pip commands to see what packages have been installed.
$conda list
$pip list


7. Create virtual environment

A virtual environment is an isolated environment for Python projects. Each project can have its own dependencies, regardless of what dependencies every other project has. Now we create a virtual environment for TensorFlow GPU support. Open the Anaconda prompt window, and enter commands:
$conda create –name tf_env python=3.10
$conda activate tf_env

virtual env

(tf_env) at the beginning of the prompt shows you are in “tf_env” env.


8. Install Tensorflow 2.10

TensorFlow requires a recent version of pip, so upgrade your pip installation to be sure you’re running the latest version. Enter the following command in the Anaconda prompt.
$pip install –upgrade pip

Please check out TensorFlow install guide for windows. You should install TensorFlow 2.10.

tensorflow windows native

To install TensorFlow 2.10, enter the following command in Anaconda prompt.
$pip install “tensorflow<2.11"
This command installs TensorFlow for both CPU and GPU, and other common used packages such as keras, numPy.

To check whether TensorFlow is installed correctly with GPU support, enter the following command in the Anaconda prompt:
$python -c “import tensorflow as tf; print(tf.config.list_physical_devices(‘GPU’))”
If it returns something like the following line, you have successfully installed TensorFlow with GPU support.
[PhysicalDevice(name=’/physical_device:GPU:0′, device_type=’GPU’)]

test TensorFlow GPU


9. Install PyCharm

Now you can use Jupyter Notebook in Anaconda3 to enter and run your project. However, I prefer to use IDE, which gives me more control. PyCharm is an integrated development environment used for programming in Python. Go to Download PyCharm at jebrains site. Download the Community version and run the installer.

After installation, open PyCharm and create a new project. In the Python interpreter, check “Previously configured interpreter”. In the drop-down, select “tf_env” you just created.

pycharm new project

If you have created a project before and want to change the virtual environment, you can go to file->settings -> project. In the Python interpreter, check using the existing environment. In drop-down, you can select other env.


10. Install additional packages

To install additional packages or modules, you can run pip in the Anaconda prompt. For example,
$pip install scikit-learn
$pip install pandas
The latest version will be installed.

For some packages, you may need to install a particular version. Here is an example,
$pip install protobuf==3.19.*

You may want to use the Transformers module in your project as well. I suggest you create another virtual environment “transformer_env”. Install TensorFlow first as described above, then run the command:
$pip install transformers

Comments are closed