
Python工具
文章平均质量分 58
HDmonster_root
这个作者很懒,什么都没留下…
展开
-
Python jupyter notebook插件 Nbextensions安装及其使用
1. 安装Nbextensions插件,若是遇到下载问题,参考pip换源教程pip install jupyter_contrib_nbextensions2. 配置Nbextensionsjupyter contrib nbextension install --user3. 重启jupyter notebook点击Nbextensions进行配置,配置前将红框内的选项去除。,这个选项的意思是为了保护你的开发环境禁用了Nbextensions配置,防止不兼容的情况出现。4.原创 2021-03-15 11:27:05 · 7510 阅读 · 2 评论 -
Python pip换国内源问题(Windows)
pip国内源清华大学https://pypi.tuna.tsinghua.edu.cn/simple/中国科技大学https://pypi.mirrors.ustc.edu.cn/simple/中国科学技术大学http://pypi.mirrors.ustc.edu.cn/simple/豆瓣(douban)http://pypi.douban.com/simple/阿里云http://mirrors.aliyun.com/pypi/simple/以清华源为例,清华源每五分...原创 2021-03-15 10:22:54 · 1014 阅读 · 0 评论 -
Python jupyter notebook 修改默认文件夹路径
环境:win10+Anaconda3(64-bit)修改步骤1. 打开jupyter notebook快捷方式2.右键快捷方式,属性,删除"%USERPROFILE%/"字段3. 修改jupyter notebook配置文件,命令提示符(管理员)键入以下命令# 创建jupyter notebook配置文件jupyter notebook --generate-config# 按照命令符提示地址C:\Users\"用户名"\.jupyter下找到配置文件 jupyter_n.原创 2021-03-15 09:42:52 · 480 阅读 · 0 评论