下载&安装
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash software/Miniconda3-latest-Linux-x86_64.sh
. .bashrc
添加国内镜像
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config –set show_channel_urls yes
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
更新pip工具,安装ipython
pip install –upgrade pip
conda install -c conda-forge ipython
安装jupyter
conda install jupyter notebook
jupyter notebook –generate-config
修改原始密码
from notebook.auth import passwd
passwd()
Enter password:yourpasswd
Verify password:yourpasswd
‘argon2:$argon2…'(复制此行密码)
exit()
修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip=’*’
c.NotebookApp.password = ‘sha:ce…’
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888
c.NotebookApp.notebook_dir = ‘/root’
启动访问
jupyter notebook –allow-root