安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能

安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能

1.首先安装anaconda3

安装包链接:https://pan.baidu.com/s/1_jrf2Zif6cj69pqwoglwOw
提取码:wc4b
安装过程一路默认下去,安装路径为了方便,直接选了默认路径,此处将两个选项都勾选上了
安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第1张图片
然后一直下一步,直至安装成功。
2.安装成功后,打开开始菜单,找到jupyter notebook并启动。
安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第2张图片
启动之后会出现以下两个弹框,此时anaconda安装成功,jupyter notebook 已经成功启动(如需操作jupyter notebook,下图左侧命令框需一直保持开启的状态)。接下来我准备装插件,所以将这两个框都先关闭了。
安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第3张图片

3.安装nbextensions插件

方便在使用jupyter notebook时能有提示,降低学习成本。
安装该插件的时候参考了几篇博文,感恩~,原博1链接(Jupyter Notebook插件工具Nbextensions):https://blog.csdn.net/haoran_yang/article/details/102777406;原博2链接(解决 python安装第三方库太慢,很容易失败报错,line 425,in _error_catcher`):https://www.pythonheidong.com/blog/article/496952/17b24e5a2ea3f4a3deab/
接下来记录下我在2台电脑上的安装该插件的过程:
第一台电脑:打开开始菜单,输入cmd,打开命令框,输入 pip install jupyter_contrib_nbextensions(如下图)
安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第4张图片
,然后回车,看到开始安装,执行结束之后,输入 jupyter contrib nbextensions install(如下图)在这里插入图片描述
,然后回车,执行结束后重复上面的步骤2,打开jupyter notebook,看到如下图按钮,表示插件安装成功
安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第5张图片
,接下来勾选hinterland这个选项,具体如下图安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第6张图片
,设置完成后切回以下界面,新建一个python文件,如下图安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第7张图片
,创建成功后,可看到如下效果,成功get提示功能,妈妈再也不怕我背错英文单词~安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第8张图片
第二台电脑:该电脑在输入 pip install jupyter_contrib_nbextensions后下载进度条很慢,装到一半就报错,尝试多次均如此,后来发现是镜像问题,改用国内镜像,将pip install jupyter_contrib_nbextensions 改为 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter_contrib_nbextensions 其余操作同一台电脑。

4.唤起jupyter notebook中自动换行功能,去掉烦人的滚动条

在网上找到该方法,亲测可行,感恩~,原文链接:https://www.zhihu.com/question/56110064;
主要操作如下:首先用 jupyter --config-dir 这个命令查看自己jupyter的配置文件位置,我的是.jupyter文件夹;然后,找到并打开nbconfig/notebook.json文件,如果没有就新建,接着加入如下内容:{
“MarkdownCell”: {
“cm_config”: {
“lineWrapping”: true
}
},
“CodeCell”: {
“cm_config”: {
“lineWrapping”: true
}
}
} 最后重新打开jupyter notebook,可看到已get自动换行 安装anaconda3、nbextensions(jupyter notebook中起到提示作用的插件),唤起jupyter notebook中自动换行功能_第9张图片

你可能感兴趣的:(笔记,python,anaconda)