安装ipython
pip3 install ipython
安装notebook
pip3 install notebook
更改Jupyter notebook的工作空间
输入jupyter notebook --generate-config
dongchang-5:~ baoshan$ jupyter notebook --generate-config
Writing default config to: /Users/baoshan/.jupyter/jupyter_notebook_config.py
修改工作空间目录
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = '/Users/baoshan/ipythondir'
启动Jupyter
ipython notebook --inline=pylib &
可以写入环境变量中
写入.bashrc文件中
alias ipythonweb='ipython notebook --inline=pylib &'
source .bashrc
shell下执行如下命令:
ipythonweb
如下页面会弹出
Jupyter的各种快捷键
执行当前cell,并自动跳到下一个cell:Shift Enter
执行当前cell,执行后不自动调转到下一个cell:Ctrl-Enter
是当前的cell进入编辑模式:Enter
退出当前cell的编辑模式:Esc
删除当前的cell:双D
为当前的cell加入line number:单L
将当前的cell转化为具有一级标题的maskdown:单1
将当前的cell转化为具有二级标题的maskdown:单2
将当前的cell转化为具有三级标题的maskdown:单3
为一行或者多行添加/取消注释:Crtl /
将本地的.py文件load到jupyter的一个cell中
将本地的代码load到cell中
%loadtest.py #test.py是当前路径下的一个python文件
利用jupyter的cell是可以运行python文件的,即在cell中运行如下代码:
%runfile.py
jupyter的cell可以作为unix command使用
在unitx command前面加入一个感叹号“!”
使用Matplotlib绘图
在Jupyter Notebook中,如果使用Matplotlib绘图,可以在开头加入如下代码:
%matplotlibinline
Example:
谢谢!
领取专属 10元无门槛券
私享最新 技术干货