![]() |
VOOZH | about |
TensorFlow is a free and open-source software library developed by Google for numerical computation and building machine learning and deep learning models. It supports running on multiple CPUs and GPUs, making it highly efficient for ML and DL projects.
Press Windows + R, type cmd, and press Enter
Before installing TensorFlow, upgrade pip to the latest version. pip is the Python package manager used to install packages.
python -m pip install --upgrade pip
Run the following command in the Command Prompt:
pip install tensorflow
This will install the latest stable version of TensorFlow along with all required dependencies.
Open Python in the Command Prompt:
python
Import TensorFlow and check the installed version, if no errors appear, TensorFlow is installed successfully.
import tensorflow as tf
print(tf.__version__)