本文主要是介绍python中装charest模块问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错:
ERROR: Could not find a version that satisfies the requirement charest (from versions: none)
ERROR: No matching distribution found for charest
报错原因:在使用pip安装python相关包时,常常会由于网络问题,导致超时,下载失败。
解决办法:修改timeout加长download的下载时间,缓解超时的问题。 默认timeout:不指定timeout时15s。
解决步骤:
更新pip版本:
python.exe -m pip install --upgrade pip
修改默认时间装charest模块:
pip --default-timeout=100 install chardet
这篇关于python中装charest模块问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!