Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation of TensorFlow on windows 7 - 'pip3' is not recognized as an internal or external command,

Tags:

When following the Installing TensorFlow for Windows guide https://www.tensorflow.org/install/install_windows, after executing

C:\> pip3 install --upgrade tensorflow 

I get the following error:

'pip3' is not recognized as an internal or external command, 

It looks like pip3 isn't recognized at all (although PATH to python is set)

like image 330
Lech Migdal Avatar asked Mar 02 '17 15:03

Lech Migdal


1 Answers

Run the following

python -m pip install --upgrade tensorflow 

Assuming python is working, TensorFlow should get installed (at least the "Validate the installation" step is green).

like image 195
Lech Migdal Avatar answered Sep 18 '22 21:09

Lech Migdal