Install Tensorflow on Linux Last Updated : 30 May, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we are going to see how to install TensorFlow in Linux. It is a completely open-source library for numerical computation using data flow graphs. System requirement:Python 3.6 to 3.8.Pip 19.0 or higher.Ubuntu 16.04 or higher.Step-wise installation: Step 1: Create a virtual environment for the python venv model. sudo apt install python3-venv python3-dev Step 2: Create a python 3 virtual environment. mkdir tensor cd tensor/ python3 -m venv <virtual_environment_name> Step 3: Now check the pip version in a virtual environment. pip --version Here our pip is 9, so we need to upgrade the pip using --upgrade: pip install --upgrade pip Step 4: Install TensorFlow using pip: pip install --upgrade tensorflow Step 5: Check it is installed properly or not. import tensorflow as tf print(tf.__version__); Comment More infoAdvertise with us Next Article How to Install Python on Linux K kumar_satyam Follow Improve Article Tags : Python AI-ML-DS Tensorflow linux Practice Tags : python Similar Reads Install Tensorflow on MacOS TensorFlow is an open-source software library developed by the Google brain team. It widely used to implement deep learning models which helps in solving real world problems. In this article, we learn how to install TensorFlow on macOS using Homebrew. Requirements: Python 3.6â3.8macOS 10.12.6 (Sierr 2 min read Install Pytorch on Linux In this article, we are going to see how you can install PyTorch in the Linux system. We are using Ubuntu 20 LTS you can use any other one. To successfully install PyTorch in your Linux system, follow the below procedure: First, check if you are using pythonâs latest version or not. Because PyGame r 2 min read How to Install Tor on Linux? Tor browser is a web browser that is designed and developed to protect your privacy online and is mostly famous among normal people as a key for safely accessing hidden or restricted online resources, including those on the dark web. We will see what Tor is and how to install it on your Linux machin 5 min read How to Install Rasterio on Linux? Rasterio is a python library for reading and writing on geospatial raster datasets. It is a GDAL and NumPy-based Python library for raster data. We can use any of the following methods to install Rasterio on our Linux machine. Method 1: Using pip command Prerequisites: We must have pip ( a python pa 2 min read How to Install Python on Linux This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning.This comprehensiv 15+ min read How to Install NLTK on Linux? NLTK is Natural Language Tool Kit. It is used to build python programming. It helps to work with human languages data. It gives a very easy user interface. It supports classification, steaming, tagging, etc. In this article, we will look into the process of installing NLTK on Linux. Installing NLTK 1 min read Like