怎么样在python 3 6里安装tensorflow

首先要下载python3.6:

https://www.python.org/downloads/release/python-361/

接着下载:

numpy-1.13.0-cp36-none-win_amd64.whl

安装这两个:

安装python 3.6成功,接着安装numpy.

接着安装tensorflow:

最后测试一下:

python3.6 + tensorflow安装完毕,高深的AI就等着你去开发了!

1. RPG游戏从入门到精通

http://edu.csdn.net/course/detail/5246

2. WiX安装工具的使用

http://edu.csdn.net/course/detail/5207

3. 俄罗斯方块游戏开发
http://edu.csdn.net/course/detail/51104. boost库入门基础
http://edu.csdn.net/course/detail/50295.Arduino入门基础
http://edu.csdn.net/course/detail/49316.Unity5.x游戏基础入门
http://edu.csdn.net/course/detail/48107. TensorFlow API攻略
http://edu.csdn.net/course/detail/44958. TensorFlow入门基本教程
http://edu.csdn.net/course/detail/43699. C++标准模板库从入门到精通 
http://edu.csdn.net/course/detail/332410.跟老菜鸟学C++
http://edu.csdn.net/course/detail/290111. 跟老菜鸟学python
http://edu.csdn.net/course/detail/259212. 在VC2015里学会使用tinyxml库
http://edu.csdn.net/course/detail/259013. 在Windows下SVN的版本管理与实战 
http://edu.csdn.net/course/detail/257914.Visual Studio 2015开发C++程序的基本使用 
http://edu.csdn.net/course/detail/257015.在VC2015里使用protobuf协议
http://edu.csdn.net/course/detail/258216.在VC2015里学会使用MySQL数据库
http://edu.csdn.net/course/detail/2672

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

原文地址:https://www.cnblogs.com/skiwnchh/p/10346637.html

时间: 2024-10-10 06:01:20

怎么样在python 3 6里安装tensorflow的相关文章

Windows 下 Python 3.6 下安装 TensorFlow (屡败屡战)

事情是这样的,好不容易找到了[含代码而不止代码]的教程: (知乎回答) 但是我用的是windows,还是win7,怎么办?有代码就好说,代码里不是有"from keras--"嘛,二话不说,pip!(感谢官方安装包自带的pip) pip install -U keras 然后华华丽丽的出错了,最后一行是这样的: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb3 in position 3: invalid start by

python 3.8 下安装 tensorflow 1.14

pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.14.0-py3-none-any.whl 附:在Python3.7下安装tensorflow 因为现在tensorflow还没有官方添加对Python3.7的支持,所以用pip直接安装是搜索不到合适的tensorflow包的,这时候就需要直接从.whl安装.具体方法为(以Mac为例): pip install https://

TensorFlow入门:mac 安装 TensorFlow

开发环境: mac os 10.12.5 Python 2.7.10 GCC 4.2.1 mac默认是不带pip的,安装pip. sudo easy_install pip 1.安装virtualenv sudo pip install virtualenv --upgrade 创建一个工作目录: sudo virtualenv --system-site-packages ~/tensorflow 进行该目录,激活沙箱 cd ~/tensorflow source bin/activate 2

安装tensorflow

安装tensorflow 背景 听说谷歌的第二代机器学习的框架tensorflow开源了,我也心血来潮去探探大牛的产品.怎奈安装就折腾了一天,现在整理出来备忘. tensorflow官方网站给出的安装步骤很简单: # Only CPU-version is available at the moment. $ pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl 安装

在linux/ubuntu上安装Tensorflow

tensorflow是一个深度学习的框架,有两个安装版本可以选择: Tensorflow with CPU support only 建议安装这个版本,因为容易安装而且很快(安装只要5-10分钟). Tensorflow with GPU support 如果你有NVIDIA GPU就可以装这个版本.这个版本速度会快很多.不过也需要为了GPU安装一个library. 没有特别需求,故安装CPU版本. 安装方式有五种,选择官方推荐的virtualenv. 1. virtualenv就是一个pyth

anaconda安装tensorflow问题: Could not find a version that satisfies the requirement tensorboard

背景:想要为下载的anaconda安装tensorflow 使用命令 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 报错如下: 解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pycharm创建项目,指定项目的运行环境为刚才创建的虚拟环境. 一:创建虚拟环境:conda create -n test python=3.5 -n后面是虚拟环境的名字   python=指定虚拟环境使

Windows解决anaconda下双python版本安装TensorFlow

首先,就是双版本anaconda的安装: 以前安装好的是python2.7版本,而TensorFlow的安装仅支持3.5版本的.但是自己本来的2.7版本又不想遗弃.所以安装双版本的: 在anaconda的官网上下载2.7版本和3.5版本: 先安装其中一个,我是想安装的2.7.一路next就可以了. 重点来了,安装3.5版本的过程如下: 1. 我下载的版本是Anaconda3-4.3.1-Windows-x86_64.下载地址:https://repo.continuum.io/archive/

【pycharm】在pycharm上,使用python的pip安装tensorflow过程

如题:在pycharm上,使用python的pip安装tensorflow过程 最后成功安装的版本信息是: python版本是3.6.5 pip版本是9.0.1 pycharm版本是2018.1 tensorflow版本是1.12.0 ======================================================================== 1.打开pycharm,点击file->default settings 2.按照步骤,一步一步创建新的python虚

[python] 安装TensorFlow问题 解决Cannot uninstall 'wrapt'. It is a distutils installed project

cmd安装 pip install tensorflow 1.遇到了 ERROR: Cannot uninstall 'wrapt'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 办法1:输入 pip install -U --ignore-inst