从comman行运行代码时我没有问题:
$ python mycode.py > output.txt
但是在VI编辑器中运行那些代码会引发警告:
:! python mycod.py > output.txt
/opt6/tools/python2.6.2/lib/python2.6/site-packages/numpy/oldnumeric/__init__.py:11: ModuleDeprecationWarning: The oldnumeric module will be dropped in Numpy 1.9
warnings.warn(_msg, ModuleDeprecationWarning)
为什么这样以及如何从VI中禁用它?
答案 0 :(得分:0)
使用seterr管理numpy警告:
http://docs.scipy.org/doc/numpy/reference/generated/numpy.seterr.html