标签: python python-2.7 compilation interpreter
有没有办法检查 python 2 脚本是否有错误?
我需要使用终端进行检查!
对于python 3我找到了
python3 -m py_compile source.py
和
python3 -m compileall source.py
并将结果捕获到文件中即可。
从终端可以正常工作,但不能用python 2。
我安装了Python 2.7.15rc1。