jupyter安装和密码设置

安装

  1. python官网下载python安装包

  2. 打开终端执行命令,安装jupyter

    pip install jupyter
    
  3. 运行。在想要查看的目录下,执行以下命令,按照提示在浏览器输入地址即可

    jupyter notebook
    

设置密码

  1. 终端执行命令 jupyter notebook password
  2. 根据提示设置自己的密码
  3. 执行命令 jupyter notebook 启动程序,按照提示打开浏览器即可

注意

  • 执行命令jupyter notebook如果出现报错 ‘Bad file descriptor…’,可能是因为依赖的pyzmq版本问题,
    需要安装指定版本,命令如下:
    卸载:pip uninstall pyzmq
    安装:pip install pyzmq==19.0.2
  • 前台启动命令jupyter notebook
  • 后台linux启动命令nohup jupyter notebook >/dev/null 2>&1 &
  • 关闭前台运行的程序[ctrl+c]

你可能感兴趣的:(实践,jupyter,ide,python)