Leverage Turing Intelligence capabilities to integrate AI into your operations, enhance automation, and optimize cloud migration for scalable impact.
Advance foundation model research and improve LLM reasoning, coding, and multimodal capabilities with Turing AGI Advancement.
Access a global network of elite AI professionals through Turing Jobs—vetted experts ready to accelerate your AI initiatives.
TensorFlow is an end-to-end open-source platform for machine learning (ML), backed by a comprehensive yet flexible ecosystem of tools, libraries, and communities. It is that magic well that allows developers to build and deploy ML-powered applications easily. This free software library is used for a variety of tasks with a focus on the inference and training of deep neural networks. In this article, we’ll look at how to install TensorFlow through pip and conda as well as the prerequisites.
Although originally developed to resolve large numerical computations, TensorFlow is primarily used for deep learning applications. It aids performance by programming the vital parts in C++ even though it uses Python. With this, there is less human thought overhead with Python and a simpler interface for experimentation can take place. From fast numerical computing to creating deep learning models, this foundation library simplifies the process built on top of TensorFlow.
The platform allows you to take new ideas from concept to code. The simple and flexible architecture enables you to build state-of-the-art models and publications faster. It offers a bundle of workflows with high-level APIs that work wonders for beginners as well as experts.
TensorFlow can help you build ML models with intuitive APIs like Keras. You can efficiently train and deploy these models on-premise, on the cloud, the browser, or on a device, irrespective of the language you use. The models can be trained using high-level APIs that make for easy debugging and immediate model iteration.
TensorFlow competes with other frameworks like Apache MXNet and PyTorch. It can also train and run deep neural networks for word embedding, sequence to sequence models for machine translation, partial differential equation-based simulations, and natural language processing. It offers greater flexibility to train your own models by allowing you to use code from the TensorFlow Model Garden.
As for the working of TensorFlow, it allows developers to create data flow graphs - structures that illustrate how data moves through a series of processing nodes or graphs. The nodes in the graph showcase a mathematical operation and each connection between the nodes is a multidimensional data array which is referred to as a tensor.
Before installing TensorFlow, it’s important to check the conditions below.
Here are the following types of installations you can choose to suit your needs.
- Install TensorFlow with GPU support: Although it takes more time to install, the faster processing balances it out. Do make sure that you meet the following checklist before you install TensorFlow with GPU support.
- Install TensorFlow with CPU support: It’s recommended that you use this type of installation only when you don't have an NVIDIA GPU in your system. It will also take less time than the GPU supported version.
The steps below illustrate how to install TensorFlow without Anaconda.
Step 1: Check your Python version
See what version of Python you have by using the command:
$ python --version
Ensure that the version is Python 3.4+. You can check the same directly using the command below:
$ python3 --version
If you’re using any other Python version, install the one required for TensorFlow with this command:
$ brew update $ brew install python # Installs Python 3 $ sudo apt install python3-dev python3-pip
Step 2: Install virtualenv
This will help you create the virtual environment required to install TensorFlow. You can do it for macOS and Ubuntu as follows:
For Ubuntu,
$ sudo pip3 install -U virtualenv# system-wide install
For macOS,
$ sudo pip3 install -U virtualenv# system-wide install
Tip: You can use pip or pip3. Use the latter if you have second thoughts. If you still want to use pip, check if it’s possible.
$ pip3 --version pip 19.1.1 from /Users/inferno/anaconda/lib/python3.6/site-packages/pip (python 3.6) $ pip --version pip 19.1.1 from /Users/inferno/anaconda/lib/python3.6/site-packages/pip (python 3.6)
Installing Anaconda offers a simple approach to installing Python. With Anaconda, you will have conda to create a virtual environment to install the package.
TensorFlow will not be loaded on older GPUs when CUDA_FORCE_PTX_JIT=1 is set. This is because packages do not include PTX code except in the latest supported CUDA architecture.
GPU-enabled devices support NVIDIA GPU cards with CUDA architectures of 3.5, 5.0, 6.0, 7.0, 7.5, 8.0 and above.
Here is a list of systems that support TensorFlow installation.
You need to install Miniconda before installing TensorFlow with conda.
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -o Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh
Select enter and ‘yes’ during the installation. If needed, restart your terminal or source ~/.bashrc to enable the conda command. Use conda -V to check if Miniconda is installed successfully.
Now that the prerequisites have been fulfilled, let’s get started with the TensorFlow installation process.
We will create a virtual environment in Python where we will have a completely independent set of packages and settings. They won’t conflict with anything in the default local Python environment or other virtual environments.
Tip: Doing this will help you keep different versions of the same package. This means that you can use scikit-learn 0.22 for one project and scikit-learn 0.1 for another.
For developers using Mac/Ubuntu, the command below will create a virtual environment (considering Python without Anaconda).
$ virtualenv --system-site-packages -p python3 tf_2
For developers already using conda, the following command will help create the virtual environment.
$ conda create -n tf_2
Use the given command in your terminal to activate the virtual environment created above.
$ source tf_2/bin/activate
$ conda activate tf_2
Once you activate the virtual environment, the terminal will change to (tf_2) $.
The GPU and CPU are packed as a single bundle in TensorFlow 2. This means that they don’t need to be installed separately.
The following pip command will help you install the latest version of TensorFlow in the newly created conda environment above.
# Requires the latest pip pip install --upgrade pipCurrent stable release for CPU and GPU
pip install tensorflow
Note: If you want to install the current tf-nightly build, the command below will help you do so:
pip install tf-nightly
Once TensorFlow is installed, check the version of the tf package.
(tf_2) $ python -c "import tensorflow as tf; x = [[2.]]; print('tensorflow version', tf.__version__); print('hello, {}'.format(tf.matmul(x, x)))"
You can expect the following output with successful installation:
tensorflow version 2.0.0-rc1 hello, [[4.]]
Here are a few quick versions of the install commands for various systems.
1. Windows Native
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 python3 -m pip install tensorflow # Verify install: python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
2. Windows WSL2
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ python3 -m pip install tensorflow # Verify install: python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
3. CPU
python3 -m pip install tensorflow # Verify install: python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
4. Linux
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ python3 -m pip install tensorflow # Verify install: python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
5. Nightly
python3 -m pip install tf-nightly # Verify install: python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
6. macOS
python3 -m pip install tensorflow # Verify install: python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
Here’s a handy checklist to follow:
Step 1: Begin by finding if the GPU is compatible with TensorFlow GPU.
Step 2: Download and install the CUDA toolkit.
Step 3: Sign up on the NVIDIA Developer website and download cuDNN.
Step 4: Install cuDNN by extracting the contents into the toolkit path installed in step 2.
Note: Replace the files you have in the CUDA Toolkit Directory.
Step 5: Check your path variables. Look for CUDA_HOME. If it is not present, add it manually.
Step 6: Check the path variables’ presence in the toolkit paths.
Step 7: Install Miniconda or Anaconda.
Step 8: Create an environment with Python and pip packages installed.
Step 9: Install by “pip install TensorFlow-gpu” and test it.
In this article, we examined the TensorFlow installation process in detail with step-by-step instructions. Now that you’ve learned how to install it through pip and conda, you can use it for your machine learning projects.
Srishti is a competent content writer and marketer with expertise in niches like cloud tech, big data, web development, and digital marketing. She looks forward to grow her tech knowledge and skills.