服务器的miniconda安装与jupyter配置

miniconda的安装与卸载

# 1.使用以下命令下载miniconda
wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh 
# 2.安装刚刚下载的Miniconda,bash就是运行.sh文件的意思
bash Miniconda3-latest-Linux-x86_64.sh 
# 3.安装好后一般是无法直接使用conda的,例如查看conda版本的指令:conda --version 是无效的那么需要输入如下指令
source .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/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls yes
#卸载miniconda
#找到你自己安装miniconda的目录,删除其文件夹
rm -rf miniconda3

jupyter配置

#conda新建一个环境
conda create -n 环境名字 python=版本
#例如创建一个环境名字为pytorch,python版本为3.7的命令:conda create -n pytorch python=3.7


#激活环境
conda activate 环境名字
#1.安装jupyter
conda install jupyter notebook


#2.配置jupyter远程访问
#生成notebook配置文件
jupyter notebook --generate-config


#打开python,创建一个密文密码
python
from notebook.auth import passwd
passwd()
#输入密码(要输入两次)输入完之后会生成一个密码的密文需要复制下来粘贴到配置文件的c.NotebookApp.password中
exit()


# 修改默认配置文件(将如下内容粘贴到jupyter_notebook_config.py中)
vim ~/.jupyter/jupyter_notebook_config.py

# 将一下内容粘贴到该配置文件中
c.NotebookApp.ip='*'
c.NotebookApp.password=u'argon2:$argon2id$v=19$m=10240,t=10......'(下述红框内容粘贴于此)
c.NotebookApp.open_browser=False
c.NotebookApp.port=8888

服务器的miniconda安装与jupyter配置_第1张图片

#运行jupyter notebook
jupyter notebook


#在浏览器中输入   服务器IP地址+端口号   即可通过浏览器远程打开jupyter

nohup命令 

#nohup命令可以让服务器在后台运行‘&’符号即为在后台运行
nohup jupyter notebook --allow-root &

#如果要杀死服务可使用如下命令
#先用lsof -i:PID 例如端口号为8888那么命令如下
lsof -i:8888
#然后根据上述指令显示出来的PID杀死进程
kill -9 PID

你可能感兴趣的:(jupyter,linux)