编程语言
首页 > 编程语言> > python在虚拟环境中安装tensorflow

python在虚拟环境中安装tensorflow

作者:互联网

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

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

在这里插入图片描述
3. 安装tensorflow

pip install tensorflow==1.4.0

在这里插入图片描述
在这里插入图片描述
4. 测试是否安装成功–用tensorflow打印“hello world”

python

在这里插入图片描述

import tensorflow as tf

在这里插入图片描述

s = tf.constant("hello world")

在这里插入图片描述

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

在这里插入图片描述
成功打印出来了,所以tensorflow装成功了。
注意:.Session()仅适用于tensorflow1,不适用于tensorflow2,如果安装的是后者,换个打印函数即可。

标签:sess,python,tf,虚拟环境,pip,tensorflow,安装
来源: https://blog.csdn.net/weixin_41743584/article/details/121908718