Python3.6+Tensorflow1.8

要求

Requires Python > 3.4 and pip >= 19.0

目前是Python > 3.4,但3.7及以上不支持

pip修改源

配置文件

1
2
3
4
5
cd ~
mkdir .pip
cd .pip
touch pip.conf
vi pip.conf

配置

1
2
3
4
5
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com

安装Tensorflow1.8

1
2
3
4
5
6
source venv/bin/activate
pip install --upgrade pip
pip list
pip3 search tensorflow

pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl

消除FutureWarning

1
pip install numpy==1.13.3

Hello

1
2
3
4
5
6
7
8
9
10
11
import tensorflow as tf

hello = tf.constant("Hello,TF")
session = tf.Session()
print(session.run(hello))

a = tf.constant(10)
b = tf.constant(32)
print(session.run(a + b))

session.close()
------ 本文结束------

本文标题:Python3.6+Tensorflow1.8

文章作者:Perkins

发布时间:2019年12月09日

原始链接:https://perkins4j2.github.io/posts/16968/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。