【Python】安装某个库的时候报错:Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-...
在安装某个库的时候如果遇到报错:Command"pythonsetup.pyegg_info"failedwitherrorcode1in/tmp/pip-build-FdRfYJ/pip原因很简单,就是你要装的那个库已经不支持你当前使用的python版本解决方法也很简单:一、升级所使用的python版本二、指定安装低版本的库Python3.6一键安装脚本:此一键脚本来自Rat’sBlog,在此表示感谢,Python版本为3.6...
Debian系统Python使用虚拟环境配置模块
首先安装虚拟环境apt-get install python3-venv创建虚拟环境目录python3 -m venv tutorial-env加载虚拟环境source tutorial-env/bin/activate然后安装需要的模块pip3 install -r requirements.txt后台运行py项目nohup python3 -u 项目名....
Python正则采集邮箱脚本
def regcontent(urlstr): respose=urllib.request.urlopen(urlstr) html=respose.read() f=re.compile(r'\d{3,12}@.{2,3}.com') items=f...
Powered By Cheug's Blog
Copyright Cheug Rights Reserved.