美文网首页
JupyterNotebook学习笔记(安装配置)

JupyterNotebook学习笔记(安装配置)

作者: 风吹小树摇 | 来源:发表于2019-04-02 11:08 被阅读0次

    一、UbuntuServer安装JupyterNotebook

    1、更新系统

    $sudo apt-get update
    $sudo apt-get upgrade
    

    2、安装并升级pip

    $sudo apt-get install python-pip
    $sudo pip install --upgrade pip
    

    3、安装Jupyter

    $sudo pip install jupyter
    

    一定要加sudo,否则会安装失败

    二、运行配置JupyterNotebook

    1、运行

    $jupyter notebook
    
    $jupyter notebook 常用参数
    $jupyter notebook 
    $jupyter notebook --no-browser
    $jupyter notebook --port 9999
    $jupyter notebook --help
    $jupyter notebook --ip=0.0.0.0 #外部访问
    *常用:$jupyter notebook --no-browser --port 5000 --ip=0.0.0.0*
    $jupyter notebook --generate-config #生成配置文件
    

    2、远程访问jupyter notebook

    2.1 jupyter系统配置

    1)生成配置文件

    2)生成密码

    $ipython
    

    In [1]: from notebook.auth import passwd
    In [2]: passwd()
    Enter password:
    Verify password:
    Out[2]: 'sha1:ce23d945972f:34769685a7ccd3d08c84a18c63968a41f1140274'
    exit

    把生成的密文‘sha:ce…’复制下来

    3)修改默认配置文件

    $vim ~/.jupyter/jupyter_notebook_config.py 
    

    进行如下修改:

    c.NotebookApp.ip='*'
    c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
    c.NotebookApp.open_browser = False
    c.NotebookApp.port =8888 #随便指定一个端口
    c.NotebookApp.allow_remote_access = True #不加启动时会报错

    2.2 建立ssh通道

    在本地终端中输入ssh username@address_of_remote -L127.0.0.1:1234:127.0.0.1:8888
    便可以在localhost:1234直接访问远程的jupyter了。

    相关文章

      网友评论

          本文标题:JupyterNotebook学习笔记(安装配置)

          本文链接:https://www.haomeiwen.com/subject/ubswbqtx.html