Python常见的错误
Python常见的错误
小码同学python爬虫乱码问题
修改前
1 | import requests |
修改后
1 | import requests |
python安装-更新包出现报错
1 | WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError(0, 'Error'))': /pypi/simple/eyed3/ |
出现错误如图所示
解决方法:
方法一
关闭你的梯子就解决问题了,哈哈
方法二
指定源下载
1 | pip install requests -i http://pypi.douban.com/simple --trusted-host pypi.douban.com |
我的源是阿里云的源,我挂了梯子就用不了,关了梯子就可以了。
1 | 国内的pip源,如下: |
安装qt5报错
报错内容: ERROR: spyder 4.0.1 requires pyqtwebengine<5.13; python_version >= 3, which is
not installed. ERROR: spyder 4.0.1 has requirement pyqt5<5.13; python_version >= 3, but you’ll have pyqt5 5.15.6 which is incompatible.
原因是Spyder
不是最新版本
1 | >>>pip install pyqt5 #报错内容如下 |
查询spyder版本
更新版本,通过pip install spyder==*
查询版本
1 | >>>pip install spyder==* |
安装5.3.0版本
更新最新即可
1 | >>>pip install spyder==5.3.0 |
评论
匿名评论隐私政策
✅ 你无需删除空行,直接评论以获取最佳展示效果