在使用gevent过程中总是遇到如下python-eggs显示异常的问题:
UserWarning: /home/taoyx/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable).
warnings.warn(msg, UserWarning)
意思大致是, 抱怨家目录下面的.python-eggs目录的group和other用户有写入权限不安全, 易于遭受攻击.
解决方法:
进入/home/taoyx目录下面, 更改.python-eggs目录的权限就可以了:
chmod g-wx,o-wx .python-eggs/
比较更改前后的该文件夹权限变化:
然后, 再执行相同的脚本, 就没有这个问题了.