how to disable pyc files generated by python

While importing a module, python automatically write compiled pyc file which is sometimes a kind of source code pollution. To avoid this, define environment variable PYTHONDONTWRITEBYTECODE to 1.



你可能感兴趣的:(python)