【Python3+Jupyter】安装及部署

 

 

  • 更新pip工具,安装ipython

    pip install –upgrade pip

    conda install -c conda-forge ipython

 

  • 安装jupyter

    conda install jupyter notebook

    jupyter notebook –generate-config

 

  • 修改原始密码

    from notebook.auth import passwd

    passwd()

    Enter password:yourpasswd

    Verify password:yourpasswd

    ‘argon2:$argon2…'(复制此行密码)

    exit()

 

  • 修改配置文件

    vim ~/.jupyter/jupyter_notebook_config.py

    c.NotebookApp.ip=’*’

    c.NotebookApp.password = ‘sha:ce…’

    c.NotebookApp.open_browser = False

    c.NotebookApp.port =8888

    c.NotebookApp.notebook_dir = ‘/root’