一、使用清欢镜像下载相对应版本的Anaconda
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2020.02-Linux-x86_64.sh
二、安装anaconda3
bash Anaconda3-2020.02-Linux-x86_64.sh
中见一路默认或者yes
到此anaconda安装已经完成,如果需要在外网上访问继续向下看
三、如果需要使用新的环境
conda install -n name python=3.8
在新生成的环境中设置:
jupyter notebook --generate-config
ipython
生成配置文件:
默认jupyter notebook 是不需要配置文件的
vi /root/.jupyter/jupyter_notebook_config.py
配置完成之后就可以启动。但是一般使用后台程序方式进行。最后加&表示后台运行,关闭终端也会继续运行。
nohup jupyter notebook --allow-root &
原文:https://www.cnblogs.com/wb1235/p/14425649.html