如何导入特定版本的tensorflow?

时间:2019-01-03 12:46:56

标签: tensorflow jupyter-notebook virtualenv

我想使用我的virtualenv中安装的Tensorflow版本1.0.0

我要在jupyter笔记本中导入tensorflow,但是仅导入全局tensorflow版本。

如何将张量流的版本导入到我在virtualenv中安装的jupyter笔记本中

1 个答案:

答案 0 :(得分:0)

即使在注释部分(感谢@jdehesa)中也提供了解决方案(答案部分),以解决社区的好处

当我们有多个Virtual Environments并且如果每个Virtual Environment具有不同版本的Tensorflow时,为了使用特定的Tensorflow Version,我们必须激活分别为Virtual Environment

使用Virtual Environment来为不同的Conda来{strong>激活的Operating Systems的命令如下所示:

# Activate the Virtual Environment. Conda Version > 4.6 and Windows OS
conda activate TF_2_VE

# Activating Virtual Environment, Conda Version < 4.6 and Windows OS
activate TF_2_VE

# Activating Virtual Environment, Conda Version < 4.6 and Linux and Mac OS
source activate TF_2_VE

要了解如何使用Virtual Environment 激活 Python,请参阅此Stack Overflow Issue