jupyter notebook安装及自动补全工具
jupyter notebook安装及自动补全工具
为了方便联系Python,特此记录下Python jupyter工具的安装流程。
jupyter notebook安装
首先升级pip版本号,因为使用的是python3,以下均在Python3.6环境下实现。
升级pip
升级过程中,根据提示。
pip3 install --upgrade pip
安装jupyter
pip3 install jupyter
运行jupyter
jupyter notebook
![在这里插入图片描述](https://img-blog.csdnimg.cn/59f22def8c254d3c85481bf88d97f8e4.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L29adW9adW9TaGladW8x,size_16,color_FFFFFF,t_70
jupyter notebook自动补全工具安装
安装
pip3 install jupyter_contrib_nbextensions
配置
安装完之后需要配置 nbextension,注意配置的时候要确保已关闭 Jupyter Notebook:
jupyter contrib nbextension install --user --skip-running-check
重新启动jupyter后,选项栏会出现 Nbextensions 的选项 如果发现使用tab还是无法显示补全代码,解决办法: 在命令行输入??
pip uninstall jedi --yes
stack overflow上解释说目前jupyter notebook中的ipython不再需要jedi,所以把它卸载即可。
|