安装Jupyter notebook
在MacBook终端执行如下命令:
pip3 install ipython
pip3 install jupyter
启动Jupyter notebook
安装完成后,在命令行中输入:
jupyter notebook
此时即启动了jupyter notebook,此时浏览器中会弹出notebook窗口
安装第三方库
在jupyter notebook中直接输入:
!pip install [package]
解决jupyter中,使用matplotlib中文显示的问题:
添加如下两条命令
plt.rc('font', **font) # 步骤一(设置字体的更多属性)
7 plt.rc('axes', unicode_minus=False) # 步骤二(解决坐标轴负数的负号显示问题)
网友评论