
Python
weixin_36823685
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Anaconda 各个应用不能启动的解决方案
在anaconda prompt下允许anaconda-navigator,提示 :有一种可能是openssl给卸载掉了,或者是没有下载该软件解决方法 点击下面链接进入网页https://slproweb.com/products/Win32OpenSSL.html 在网页里面查找名为Win64 OpenSSL v1.1.1f Light.EXE的文件,文件名里面的版本号v1.1.1f可能会发生变化,找到下载列表中第1个文件就可以了。 下载安装后,...原创 2021-07-29 18:36:34 · 2211 阅读 · 0 评论 -
windows anaconda TypeError: LoadLibrary() argument 1 must be str, not None
在命令行下面输入conda upgrade --all 时候会爆出下面的错误吧,获取你也看了很多解决办法是不是都不理想。那试试我这种吧。TypeError: LoadLibrary() argument 1 must be str, not NoneTraceback (most recent call last): File "D:\ProgramFiles\Anaco...原创 2019-10-28 14:06:19 · 524 阅读 · 3 评论 -
微信爬取自己的朋友头像
from wxpy import *import PIL.Image as Imageimport osimport sys#完成好友头像的获取及下载def get_image(): curr_dir=os.getcwd() if not os.path.exists(curr_dir+"Image/"): os.mkdir(curr_dir+"Ima...原创 2019-09-15 10:49:04 · 269 阅读 · 0 评论