ubuntu下使用conda创建虚拟环境,配置jupyter notebook

一. Anaconda创建环境:

//下面是创建python=3.6版本的环境,安装tensorflow取名叫tf

conda create -n tf python=3.6 

删除环境

conda remove -n tf --all

激活环境

source activate tf

退出环境

source deactivate


二. 使用anaconda安装tensorflow(gpu版本):conda install tensorflow-gpu 

import tensorflow as tf
print(tf.VERSION)

三. 配置jupyter notebook

报错:No module named “tensorflow.keras”

   

需要在虚拟环境下使用jupyter notebook

conda install nb_conda

ubuntu下使用conda创建虚拟环境,配置jupyter notebook_第1张图片

重新打开jupyter notebook此时出现虚拟环境选项

你可能感兴趣的:(Ubuntu)