python在虚拟环境中安装tensorflow

在虚拟环境中安装tensorflow步骤
过程参考了https://www.youtube.com/watch?v=lxQGio9UC4o

  1. 确定自己想要装tensorflow的虚拟环境的绝对路径
    python在虚拟环境中安装tensorflow
    如上,绝对路径在D盘。
  2. 打开cmd,cd到对应路径下
d:
D:\JetBrains\PycharmProjects\cnn\venv\Scripts>pip uninstall tensorflow

python在虚拟环境中安装tensorflow
3. 安装tensorflow

pip install tensorflow==1.4.0

python在虚拟环境中安装tensorflow
python在虚拟环境中安装tensorflow
4. 测试是否安装成功–用tensorflow打印“hello world”

python

python在虚拟环境中安装tensorflow

import tensorflow as tf

python在虚拟环境中安装tensorflow

s = tf.constant("hello world")

python在虚拟环境中安装tensorflow

with tf.Session() as sess:
	sess.run(s)

python在虚拟环境中安装tensorflow
成功打印出来了,所以tensorflow装成功了。
注意:.Session()仅适用于tensorflow1,不适用于tensorflow2,如果安装的是后者,换个打印函数即可。

上一篇:tensorflow 1.X 学习(为了浮现GMVASE论文)


下一篇:数据库删除数据很慢,但可以很快查出数据