美文网首页
jupyter安装与配置

jupyter安装与配置

作者: 京漂的小程序媛儿 | 来源:发表于2020-08-04 16:00 被阅读0次

    安装:
    conda install jupyter notebook
    配置:
    1、设置登录密码
    python
    from notebook.auth import passwd
    passwd()
    2、修改配置文件
    生成配置文件:jupyter notebook --generate-config
    修改:vim /root/.jupyter/jupyter_notebook_config.py
    修改内容
    c.NotebookApp.password =
    c.NotebookApp.port =
    c.NotebookApp.ip = *
    3、启动
    jupyter notebook --allow-root

    相关文章

      网友评论

          本文标题:jupyter安装与配置

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