centos8配置深度学习环境

1.

yum update -y

2.

yum -y groupinstall "Development tools"

3.

yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel psmisc libffi-devel

11.下载miniconda源

​
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh​

12. 安装Miniconda

bash Miniconda3-latest-Linux-x86_64.sh

13.bash命令进入conda环境(按顺序做)

source /YOUR_CONDA_PATH/bin/activate base(环境名称)
或者直接使用bash命令(推荐,不行再用上面这个)

14.

pip install jupyter d2l torch torchvision -i https://pypi.doubanio.com/simple

15.打开jupyter notebook显示Running as root is not recommended. Use --allow-root to bypass

        a.使用jupyter notebook --generate-config生成jupyter配置文件

        b.找到root/.jupyter/jupyter_notebook_config.py文件,修改c.NotebookApp.allow_root=True,      并且去掉前面的#号

16.jupyterlab推荐使用       

pip install jupyterlab

如果只是临时性使用,推荐如下命令运行jupyter:
jupyter lab --ip 0.0.0.0 --port 8888 --allow-root --no-browser

jupyter lab密码配置
1. jupyter server password

永久有效的配制方法,配置文件产生方法见:上面1-1的方法:

使用 jupyter notebook --generate-config 命令生成jupyter配置文件
使用vim ~/.jupyter/jupyter_notebook_config.py打开配置文件,找到或者直接添加如下内容修改相关配置
c.NotebookApp.ip = '0.0.0.0' # listen on all IPs,远程访问时需要配置该项
c.NotebookApp.port = 55555  #jupyter监听的端口
c.NotebookApp.open_browser = False #是否在键入`jupyter`时打开浏览器
c.NotebookApp.password = 'argon2:$argon2id$v=19$m=10240,t=10,p=8$yquzhGfZQd0ul/9aC4F7cQ$qMZffPLzgtukdg51uY6+aQ' #jupyter server密码,生成方法见3的内容。
c.NotebookApp.allow_root = False #是否同意jupyter以root身份运行

 17.本地访问虚拟机或服务器jupyter

        ssh -L8888:localhost:8888 root@ip(47.116.4.154,192.168.27.128)

        此后只需运行jupyter notebook即可访问本地jupyter notebook

18.pip install rise 幻灯片形式打开jupyter notebook

你可能感兴趣的:(深度学习,python,centos,深度学习,python,linux,深度学习环境,miniconda)