方法1:使用-B参数
python3 -B test.py
方法2:在脚本里添加 sys.dont_write_bytecode=True
import sys
sys.dont_write_bytecode = True
方法3:设置环境变量
export PYTHONDONTWRITEBYTECODE=1
python3 -B test.py
import sys
sys.dont_write_bytecode = True
export PYTHONDONTWRITEBYTECODE=1
本文标题:python3不生成.pyc文件
本文链接:https://www.haomeiwen.com/subject/dsgkmktx.html
网友评论