linux服务器端安装jupyter notebook并在本地使用
- 1.生成配置文件:
- 2.配置Jupyter notebook密码
- 3,修改配置文件~/.jupyter/jupyter_notebook_config.py
- 4. 本地访问远端的服务器的jupyter
- 为jupyter notebook配置conda环境
1.生成配置文件:
jupyter notebook --generate-config
路径是 ~/.jupyter/jupyter_notebook_config.py
2.配置Jupyter notebook密码
ipythonfrom notebook.auth import passwdpasswd() #自定义密码,会提示输入两次,这个密码就是本地登录浏览器的密码
上述代码会生成一个密钥,记住该密钥。
3,修改配置文件~/.jupyter/jupyter_notebook_config.py
vim ~/.jupyter/jupyter_notebook_config.py# 或者用pycharm直接打开在本地修改也行
打开配置文件后,shift+g跳到末尾,i进入编辑模式,插入以下代码:
(最后一行我没有用到,需要的可以取消注释)
c.NotebookApp.ip='*' #设置访问notebook的ip,*表示所有IPc.NotebookApp.password = u'sha1:xxx' #填写刚刚复制的密钥 c.NotebookApp.open_browser = False # 禁止notebook启动时自动打开浏览器c.NotebookApp.allow_root = True #允许root用户c.NotebookApp.port =8890 #指定访问的端口,默认是8888。c.NotebookApp.allow_remote_access = True # 是否允许远程访问#c.NotebookApp.notebook_dir = '/usr/local/bin/jupyter' # 设置工作目录
esc退出编辑,shift + :wq保存
4. 本地访问远端的服务器的jupyter
1.首先在Linux服务器上启动Jupyter notebook
jupyter notebook --no-browser --port=8890
2.然后在本地转发端口
ssh -N -f -L localhost:8888:localhost:8890 -p 22 remote_user@remote_host # 默认端口是22# remote_user@remote_host: 远程机器(服务器)用户名@服务器IP
如
ssh -N -f -L localhost:8888:localhost:8890 -p 22 zhouzikang@222.200.185.79
最后,然后在本地打开浏览器输入以下内容:
http://localhost:8888/或http://10.10.10.253:8890
初次登录输入前述自定义的密码。
注意是http没有s。
为jupyter notebook配置conda环境
下载nb_conda库
conda install nb_conda_kernels
然后直接重启运行jupyter notebook
如果有问题:
卸载掉jupyter notebook再重新安装
conda uninstall jupyterconda install jupyter
可能还要再重新下载nb_conda_kernels:
conda install nb_conda_kernels
或者:
先激活对应的conda环境然后
python -m ipykernel install --user --name=conda_name --display-name "conda_name"
参考:
linux服务器端安装jupyter notebook并在本地使用
来源地址:https://blog.csdn.net/qq_45934285/article/details/130935763