下载anaconda安装包
wget https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
安装
bash Anaconda3-2022.10-Linux-x86_64.sh
进入base环境
eval "$(/home/xmxhuihui/anaconda3/bin/conda shell.bash hook)"
source ~/.bashrc
安装虚拟环境
conda create -n work python=3.9.16
conda activate work
安装jupyter notebook
conda install jupyter notebook
配置jupyter notebook远程连接
jupyter notebook --generate-config
设置一个密码
jupyter notebook password
进入配置文件进行配置
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*' # 代表任意ip是都可以访问jupyter
c.NotebookApp.notebook_dir='/home/ubuntu/jupyter' # notebook的工作目录,可以自己的实际情况修改,注意要确保目录存在
c.NotebookApp.open_browser = False # 不打开浏览器
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
jupyter notebook不挂起
nohup jupyter notebook > jupyter.log 2>&1 &
配置防火墙开放端口
运行Jupyter notebook
jupyter notebook
浏览器登录
输入公网ip+端口
输入密码打开jupyter