简体   繁体   English

安装Tensorflow for Python 3.6(Windows 10)

[英]Installing Tensorflow for Python 3.6 (Windows 10)

It could be a replicate question, but none of the existing questiones have been useful for me. 这可能是一个重复的问题,但是现有的问题对我来说都没有用。 I've tried all the solutions given here ( stackoverflow ) I get this error: 我已经尝试过这里给出的所有解决方案( stackoverflow )我收到此错误:

Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow 找不到满足需求tensorflow的版本(来自版本:)找不到与tensorflow匹配的分布

I have this version of the pip on my Pycharm machine with Python 3.6 (Windows 10): 我在使用Python 3.6(Windows 10)的Pycharm机器上具有以下版本的pip:

Package Version ------- pip 18.0 -- setuptools 40.4.3 -- wheel 0.32.0 软件包版本------- pip 18.0-setuptools 40.4.3-wheel 0.32.0

I would like to install tensorflow and I have tried to take a look at this link as most of the people suggested. 我想安装tensorflow,并且我尝试按照大多数人的建议看一下这个链接 Does anybody want to guide me in my installation? 有人要指导我进行安装吗?

Installation Commands 安装指令

The following commands are based on the following installation guide here . 以下命令基于此处的以下安装指南。

using cmd 使用cmd

C:> pip3 install --upgrade tensorflow // cpu
C:> pip3 install --upgrade tensorflow-gpu // gpu

using Anaconda 使用Anaconda

C:> conda create -n tensorflow python=3.5 
C:> activate tensorflow
(tensorflow)C:> pip install --ignore-installed --upgrade tensorflow
(tensorflow)C:> pip install --ignore-installed --upgrade tensorflow-gpu

You can get step by step instructions here 您可以在此处获取逐步说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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