Get rid of .pyc
:date: 2013-11-03
:category: computing
:tags: python
:author: alf
While developing in python, you might have problems with .pyc files which holds byte codes of corresponding python source files.
To prevent python from producing those files in development, declare this in your environment.
.. code-block:: shell-session
alf@melmac:~$ export PYTHONDONTWRITEBYTECODE=1