TensorFlow 2 Installation on Windows 10

Akash Patel
2 min readJul 9, 2020

--

Tensorflow 2 + Anaconda + PIp + Windows 10

We will install Tensorflow 2 Package on windows 10.

Required Tools :
- Anaconda
- Python
- Pip

Prerequisites :

Now,

  • Click the Start Menu
  • Search For “Anaconda Prompt”
  • Then Right-click and Select “Run as Administrator”
  • Create a python environment using the command —
    `conda create — name <env name> python=<your python env no.>`
    e.g. `conda create — name tensorflowApp python=3.7.3`
  • Inside the terminal screen — run activate tensorflowAppcommand
  • Then run the installation command :
pip install tensorflow==2.1 
or
conda install tensorflow==2.1
  • Check the install python packages list using the following command :
pip list 
or
conda list
  • For confirmation of the binary files are available at IDE
  • This command will open Python interpreter IDE
Python 
  • To verify version
    Run this command :
import tensorflow as tf
print(tf.__version__)

Please find all screenshots, and follow the above define steps.

Cheers! You have successfully installed the Tensorflow package and now it’s ready to use!!

--

--

Akash Patel
Akash Patel

Written by Akash Patel

Data Engineer — 🗡️ Samurai

No responses yet