2022年08月的文章

Debian11解决libidn动态库报错

阅读(472)

Debian11 调用动态库报错 libidn.so.11 => not found erro提示:error while loading shared libraries: libidn.so.11: cannot open shared...

Jupyter notebook更改默认工作路径

阅读(492)

每次我们打开Jupyter Notebook时,在弹出的浏览器界面上是系统默认的文件位置(工作路径),有时候我们想保存写好的Python文件到自己想要的位置时就非常的不方便,那么我们该如何修改Jupyter Notebook默认的工作路径呢...

Jupyter notebook 代码自动补全插件-泰恩数据

Jupyter notebook 代码自动补全插件

阅读(507)

使用jupyter, 代码自动补全是必备功能。要实现代码自动补全需要三步: 安装插件包 pip install jupyter_contrib_nbextensions 在jupyter中安装插件菜单 jupyter contrib nbe...

爬虫代理设置

阅读(348)

urllib 方式 def user_proxy(proxy_addr, url): import urllib.request proxy = urllib.request.ProxyHandler({'http': proxy_addr...