Mac——Jupyter安装TensorFlow

时间:2024-05-19 16:56:20

在安装TensorFlow之前,我已经安装了Jupyter。

安装Jupyter参考:https://blog.****.net/qq_39093164/article/details/88920134

安装TensorFlow参考:https://blog.****.net/qq_39093164/article/details/89414112

在TensorFlow环境下再安装Jupyter就可以

1.**TensorFlow环境

source activate tensorflow

2.查看环境下的各软件的位置

Mac——Jupyter安装TensorFlow

可见,我的TensorFlow环境中没有Jupyter和Ipython

3.安装Jupyter和Ipython

conda install ipython

conda install jupyter

 4.验证安装

打开jupyter

jupyter notebook 

import tensorflow as tf 

Mac——Jupyter安装TensorFlow

运行成功即为成功