0%

通过miniconda安装使用jupyter

安装 miniconda

https://docs.anaconda.com/free/miniconda/ 下载对应版本的安装脚本

1
bash xx.sh

根据提示安装完成后,重新打开terminal窗口

通过 miniconda 创建单独的环境且安装 jupyter 等需要的包

1
2
conda env list
conda create -n environment_name python numpy pandas jupyter
1
2
3
4
5
conda deactivate # exit current environment
conda activate environment_name # activate the specific environment

# can still install other packages
conda install matplotlib

运行 jupyter

1
jupyter notebook