安装jupyter
jupyterlab和jupyter notebook的关系暂时没有搞清楚。先都安装了吧,用用再说。
选择国内镜像,避免万里长城的干扰。
pip install jupyterlab -i http://uni.mirrors.163.com --trust-host uni.mirrors.163.com
pip install jupyter notebook -i http://uni.mirrors.163.com --trust-host uni.mirrors.163.com
启动jupyter notebook
启动的方式,在终端输入jupyter notebook,就会启动,打开浏览器窗口。也可以在后面加上参数--no-browser不打开浏览器,或者指定端口和IP地址。我们在打开的jupyter notebook里面,新建一个文件,写入代码。保存执行,我们用的是matplotlib.pyplot里面的imshow方法显示了lena.jpg
jupyter notebook --no-browser
jupyter notebook --no-browser --port 23456 --ip=0.0.0.0
记录几个常用的快捷键。
可以打一个“点”按tab键提示,函数、方法中按shift+tab可以看到API提示。
按shift+enter可以直接运行程序。
按ctrl+/可以注释代码。