Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Python by (16.4k points)

Hello, all. Is there any way to install the TensorFlow on python 3.7

I tried:

D:\Users\Downloads>pip install tensorflow

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)

ERROR: No matching distribution found for tensorflow

In Windows 10 OS

and I received this error message too,

(venv) C:\Users\KvaksManYT>pip install --upgrade tensorflow

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)

ERROR: No matching distribution found for tensorflow

1 Answer

0 votes
by (26.4k points)

I would suggest utilizing a virtual environment utilizing pip install vitualenv. At that point, contingent upon your OS, you need to establish and activate an environment.

python3 -m venv /path/to/new/virtual/environment

Now, try to activate this environment with the help of,

source ./venv/bin/activate

And now, I think you can install the python packages which you need.

pip install tensorflow==2.0.0

If you want to become an expert in Python? Join the python course fast!

For more details, do check out the below video tutorial.

Related questions

+1 vote
1 answer
asked Nov 23, 2020 in Python by ashely (50.2k points)
0 votes
1 answer
asked Feb 19, 2021 in Python by laddulakshana (16.4k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...