加载anaconda模块
module load anaconda/5.0.0-py36
创建自己的环境
conda create -n py36 python=3.6 ipython ipykernel
查看当前环境
conda info --envs
激活环境
source activate py36
安装nb_conda以在Jupyter notebook中调用不同的环境
conda install nb_conda
启动Jupyter notebook
jupyter notebook
终端运行jupyter notebook后打开了jupyter的网页,关闭jupyter的网页后同时按下ctrl和C键退出终端jupyter notebook。 k 完成之后返回原始环境
source deactivate py36
最后一次修改于 2018-11-24