我刚刚为Python 2.6安装了我的MySQLdb
软件包,现在当我使用import MySQLdb
导入它时,会出现用户警告
/usr/lib/python2.6/site-packages/setuptools-0.8-py2.6.egg/pkg_resources.py:1054:
UserWarning: /home/sgpromot/.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)
有没有办法摆脱这个?
答案 0 :(得分:78)
您可以将~/.python-eggs
更改为群组/所有人无法写入。我认为这有效:
chmod g-wx,o-wx ~/.python-eggs
答案 1 :(得分:16)
您可以使用-W ignore
python -W ignore yourscript.py
If you want to supress warnings in your script (quote from docs):
如果您使用的代码会引发警告,例如已弃用的函数,但不希望看到警告,则可以使用catch_warnings上下文管理器来禁止警告:
import warnings
def fxn():
warnings.warn("deprecated", DeprecationWarning)
with warnings.catch_warnings():
warnings.simplefilter("ignore")
fxn()
在上下文管理器中,所有警告都将被忽略。这允许您使用已知弃用的代码,而不必查看警告,同时不抑制可能不知道其使用已弃用代码的其他代码的警告。注意:这只能在单线程应用程序中得到保证。如果两个或多个线程同时使用catch_warnings上下文管理器,则行为未定义。
如果您只想忽略警告,可以使用filterwarnings
:
import warnings
warnings.filterwarnings("ignore")