Jupyter notebook的使用

 Anaconda发行版默认带了Jupyter Notebook,默认的base环境中可直接使用,但是新创建的环境中,需要安装jupyter notebook。

 

在python36环境中安装并使用jupyter notebook:

(python36) [@****:~]$ conda install jupyter notebook

  安装成功后,启动jupyter notebook:

(python36) [@******:~]$ jupyter notebook

  运行成功后,自动弹出来:

Jupyter notebook的使用_第1张图片

  • 安装环境自动关联包

conda install nb_conda

conda install nb_conda

该包可以将conda中创建的环境自动关联到你的notebook中。

 Jupyter notebook的使用_第2张图片

 

 上图显示的环境信息,应该与 conda env list 展示的信息一致。

  • 在Anaconda终端安装代码自动补全包
conda install pyreadline

  然后,可以通过tab调用自动补全功能

 
 

 

参考:

https://blog.csdn.net/m0_37438418/article/details/80620190

你可能感兴趣的:(Jupyter notebook的使用)