- Git报错解决:fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054
- io.UnsupportedOperation: File not open for writing
- python-Levenshtein安装出现error: Microsoft Visual C++ 14.0 is required.
- AttributeError: module 'matplotlib.cbook' has no attribute 'iterable'
添加链接描述
解除ssl验证后,再次git即可
git config --global http.sslVerify "false"
添加链接描述
修改,打开文件时添加上 w+
filtered_file = open("xxx.txt", "w+")
python-Levenshtein安装出现error: Microsoft Visual C++ 14.0 is required.
我下载了Visual Studio也还是不行不知道怎么回事,参考
然后直接下载了whl文件使用pip安装pip install xxxpython_Levenshtein-0.12.0-cp36-cp36m-win_amd64.whl 巨快!参考
python_Levenshtein.whl文件下载地址
matplotlib包的版本太新,重新安装版本较旧的matplotlib包
pip install matplotlib==2.2.3
参考
另外有评论说升级 networkx版本 也可以,但是我没有尝试



