How to install tensorflow in Python 3.7

Step 1
Check if your Python environment is already configured:
[ Requires Python 3.5–3.8, pip and venv >= 19.0 ]
python3 --version pip3 --version
If not installed, install Python, the pip package manager, and venv:
Step 2
Create a virtual environment. Python virtual environments are used to isolate package installation from the system.
python -m venv --system-site-packages .\venv .\venv\Scripts\activate
Step 3
Install the TensorFlow pip package.
pip install --upgrade tensorflow
To exit the virtual environment later:
deactivate # don't exit until you're done using TensorFlow
Subscribe
Login
Please login to comment
0 Discussion