jupyter使用小结

感情迁移 提交于 2019-11-27 10:04:29

jupyter(之前的ipython notebook)于我的最大意义在于,让学习进程和探索进程变得可累积,正如它的原先名字中的notebook所暗示的那样,作为学习的记录者,方便你随时捡起学习的进度,增量式地前进

安装

Ubuntu :       pip install jupyter

 如果在windows下直接装anaconda吧!不想折腾的你在任何平台下都可以装anacond

使用

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 

配置

  • ipython locate : 查看配置
  • jupyter notebook --generate-config : 如果没有~/.jupyter/jupyter_notebook_config.py,则执行这条命令,之后在此做配置

vim ~/.jupyter/jupyter_notebook_config.py

# The directory to use for notebooks.这决定了jupyter启动目录
c.NotebookApp.notebook_dir = u'/path/to/your/notebooks'

文档

 

pip install -i http://mirrors.aliyun.com/pypi/simple jupyter  # pip 安装有时候很慢,使用国内阿里云。
或者建个文件 ~/.pip/pip.conf, 内容如下:

[global]
timeout = 1000
index-url = http://mirrors.aliyun.com/pypi/simple
[install]
trusted-host = mirrors.aliyun.com/pypi

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!