系统环境
1.下载与系统对应版本 miniconda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
2.运行miniconda安装程序
bash Miniconda3-latest-Linux-x86_64.sh
开始安装Miniconda3……
3.source ~/.bashrc
4.创建新conda环境
conda create -n env python=3.6
创建python环境python=3.6,名为env的conda环境
5启动env环境
source activate env
5.1安装jupyter notebook 及远程连接
conda install jupyter notebook
jupyter notebook --ip 0.0.0.0
6 关闭
source deactivate env