这两天实验室的服务器下来了,记录下怎么配置的,怕忘了。
环境配置
mkdir downloads
cd downloads/
wget https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh
bash Anaconda3-2019.10-Linux-x86_64.sh
conda create -n test python=3.6
conda activate test
conda install keras-gpu=2.1 cudatoolkit=9.0
python keras_test.py
安装jupyter notebook
pip install ipython
pip install Jupyter
#生成配置文件
jupyter notebook --generate-config
#生成密码
ipython
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:ae8xxxxdxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
配置jupyter notebook文件
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*' # 就是设置所有ip皆可访问
c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
c.NotebookApp.open_browser = False # 禁止自动打开浏览器,如果服务器有浏览器也可以不修改这一项
c.NotebookApp.port =8888 #随便指定一个端口
vim 使用
常用命令是ESC,然后:wq(保存并退出),:q!(不保存并强制退出),i进入vim模式。
参考资料http://www.bubuko.com/infodetail-2566341.html