方式一:设置环境变量(最常用的)
export PYTHONDONTWRITEBYTECODE=1
方式二:使用 -B参数
python -B test.py
方式三:在导入的地方写
import sys
sys.dont_write_bytecode = True
export PYTHONDONTWRITEBYTECODE=1
python -B test.py
import sys
sys.dont_write_bytecode = True
本文标题:python如何不生成pyc文件
本文链接:https://www.haomeiwen.com/subject/szwxdqtx.html
网友评论