If you're looking to install TensorFlow, you've come to the right place! Below are the steps to install TensorFlow on your system. Make sure you have Python installed before proceeding.
System Requirements
Before installing TensorFlow, ensure your system meets the following requirements:
- Python 3.6 or higher
- pip (Python package installer)
Installation Steps
Upgrade pip:
python -m pip install --upgrade pip
Install TensorFlow:
- To install the CPU version of TensorFlow, run:
pip install tensorflow
- To install the GPU version of TensorFlow, run:
pip install tensorflow-gpu
- To install the CPU version of TensorFlow, run:
Verify the Installation: Open your Python interpreter and run the following code to verify the installation:
import tensorflow as tf print(tf.__version__)
Additional Resources
For more detailed information, visit the official TensorFlow installation guide: TensorFlow Installation
If you're looking for more information on TensorFlow, check out our TensorFlow Fundamentals guide. It's a great resource for getting started with TensorFlow!
TensorFlow Logo