我在Jupyter上有Python 3和Python 2内核(我用Python 3安装了Anaconda,然后我添加了Python2)。我在Anaconda上安装了TensorFlow,它在Python 3内核中运行,但似乎我必须为Python 2安装它。我怎么能这样做?
答案 0 :(得分:0)
首先,确保安装了nb_conda,它在Jupyter中提供了conda环境和包访问扩展。
conda install nb_conda
使用Python 2.7创建环境。然后在环境中安装tensorflow。这应该是Jupyter可以访问的。
conda create --name tensorflow27 python=2.7 anaconda
source activate tensorflow27
conda install -c conda-forge tensorflow=1.0.0
或者如果你想要版本1.1.0:
conda install tensorflow=1.1.0