简体   繁体   中英

Error Installing TENSORFLOW using PIP

When I try to install Tensorflow by typing "pip3 install --upgrade tensorflow" into the C: command prompt line, I get the error: "pip3 is not recognized as an internal or external command, operable program or batch file" (See attached picture)

I have Python 3.6.5 installed on my Windows 7 laptop, so it includes "pip3" needed to install Tensorflow.

错误信息

Since your computer does have Python 3.6 and it comes with pip , you could try running

python -mpip install tensorflow

If Python isn't found either, run

c:\python36\bin\python -mpip install tensorflow

The problem here is that "pip3" is not recognized as a command. In order for pip to be run from the command line, it needs to be added to your system's PATH.

The accepted answer here should help: https://stackoverflow.com/questions/23708898/pip-is-not-recognized-as-an-internal-or-external-command

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM