zoukankan      html  css  js  c++  java
  • 【Linux下安装配置Jupyter】

    "> ```shell

    """ 第一步 安装 """
    pip3 install -i https://pypi.douban.com/simple jupyter

    """ 第二步 生成配置文件 """
    jupyter notebook --generate-config --allow-root

    配置文件生成在:~/.jupyter/jupyter_notebook_config.py

    """ 第三步 生成密码 """
    jupyter notebook password

    """ 第四部 修改配置文件 """

    设置监听地址,一般改为当前主机的ip

    sed -ie "s/#c.NotebookApp.ip = 'localhost'/c.NotebookApp.ip = '0.0.0.0'/g" ~/.jupyter/jupyter_notebook_config.py

    设置监听端口

    sed -ie 's/#c.NotebookApp.port = 8888/c.NotebookApp.port = 8000/g' ~/.jupyter/jupyter_notebook_config.py

    禁用自动打开浏览器

    sed -ie 's/#c.NotebookApp.open_browser = True/c.NotebookApp.open_browser = False/g' ~/.jupyter/jupyter_notebook_config.py

    """ 第五步 启动朱皮特 """
    jupyter notebook --allow-root &

    """ 第六步 访问 """

    在访问前,先看看你的防火墙规则

    此时打开浏览器,输入 Jupyter服务器的ip:8000

    进入登陆页面后,输入刚刚生成的密码即可

    "

  • 相关阅读:
    [NOI2014]动物园
    2018.7.15模拟赛
    2018.7.13模拟赛
    [CodeForces]920F SUM and REPLACE
    [BZOJ3211]花神游历各国
    [GSS5] Can you answer these queries V
    [SPOJ1716] GSS3
    [HNOI2012]排队
    2018.7.10模拟赛
    7.3模拟赛
  • 原文地址:https://www.cnblogs.com/zyk01/p/11376460.html
Copyright © 2011-2022 走看看