Hello All, I am learning Tensorflow and I want to how do I install tensorflow in my system or I am looking to online tutorial of tensorflow. Can anyone know, Please suggest me.

Dani AI

Generated

A concise, up-to-date install note for : , and pointed to pip-based tutorials and shared a blog. Those are fine starting points, but installation problems usually come from version mismatches (TensorFlow vs Python vs CUDA/drivers). The safest approach is an isolated environment plus the official TensorFlow install docs for the exact instructions and compatibility table.

Create and use an isolated environment, upgrade pip, install the wheel, then verify the install. Example using venv (activation differs on Windows):

python -m venv tf-env

# Linux / macOS
source tf-env/bin/activate

# Windows PowerShell
.\tf-env\Scripts\Activate.ps1

python -m pip install --upgrade pip setuptools wheel
python -m pip install tensorflow

python -c "import tensorflow as tf; print(tf.__version__)"

For GPU use, follow the TensorFlow GPU guide: it documents the required NVIDIA driver, CUDA and cuDNN versions for each TensorFlow release. Common troubleshooting points: incompatible Python, missing/incorrect CUDA/cuDNN versions, and PATH or driver issues. When local setup is difficult, official Docker images or Google Colab provide hassle-free alternatives.

Authoritative references (always consult these for the latest compatibility and platform notes): TensorFlow installation and the TensorFlow GPU guide.

Recommended Answers

All 4 Replies

Install TensorFlow CPU for Python

Open a new Terminal window and activate the tensorflow_cpu environment (if you have not done so already)
Once open, type the following on the command line: pip install --ignore-installed --upgrade tensorflow==1. ...
Wait for the installation to finish.

Here you can visit this post: https://hackr.io/blog/how-to-install-tensorflow

commented: 'pip' is not recognized as an internal or external command, operable program or batch file. -3

Hi Adi,

Here I am sharing the step by step guide to install tensorflow:

  1. Open a new Terminal window and activate the tensorflow_cpu environment (if you have not done so already)
  2. Once open, type the following on the command line: pip install --ignore-installed --upgrade tensorflow==1. ...
  3. Wait for the installation to finish.

    To know more visit here.

commented: Tried it. 'pip' is not recognized as an internal or external command, operable program or batch file. -3

Hi this is Palak Sharma
please follow this link hope it will be very familiar with you and I am sure definitely it will resolve your problem.
Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.