Can compiled bytecode files (.pyc) get generated in different directory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T15:45:52Zhttp://stackoverflow.com/feeds/question/611967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory3Can compiled bytecode files (.pyc) get generated in different directory?corey goldberg2009-03-04T19:01:40Z2009-03-04T22:16:41Z
<p>When python compiles modules to bytecode, it produces .pyc files from your .py files.</p>
<p>My question is, is it possible to have these .pyc files written to a different directory than where the module resides?</p>
<p>For example, I have a large directory of modules. Rather than having it littered with .pyc files, I would like to keep my source code in the directory and have a subdirectory like "bytecode" where all of the .pyc are stored.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory/611991#6119910Answer by David for Can compiled bytecode files (.pyc) get generated in different directory?David2009-03-04T19:08:36Z2009-03-04T19:08:36Z<p>I seem to remember reading somewhere that this is not possible and that the Python People have reasons for not making it possible, although I can't remember where.</p>
<p><em>EDIT</em>: sorry, I misread the question - what I meant is that it's not possible (I think) to configure the Python executable to put its bytecode files in a different directory by default. You could always write a little Python compiler script (or find one, I'm sure they're out there) that would put the bytecode files in a location of your choosing.</p>
http://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory/611995#6119953Answer by Brian R. Bondy for Can compiled bytecode files (.pyc) get generated in different directory?Brian R. Bondy2009-03-04T19:09:30Z2009-03-04T19:09:30Z<p>Check the <a href="http://docs.python.org/library/py%5Fcompile.html#module-py%5Fcompile" rel="nofollow">py_compile module</a>, and in particular:</p>
<pre><code>py_compile.compile(file[, cfile[, dfile[, doraise]]])
</code></pre>
<p>The cfile is the parameter you are interested in.</p>
<p>From the link above:</p>
<blockquote>
<p>...The byte-code is written to cfile,
which defaults to file + 'c'...</p>
</blockquote>
http://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory/611998#6119980Answer by samoz for Can compiled bytecode files (.pyc) get generated in different directory?samoz2009-03-04T19:09:56Z2009-03-04T22:16:41Z<p>You could write a script to compile them and then move them around. Something like:</p>
<pre><code>for i in `ls *.pyc`
do
mv $i $DEST_DIR
done
</code></pre>
<p>(which can be shortened to:</p>
<pre><code>for i in *.pyc
do
mv $i $DEST_DIR
done
</code></pre>
<p>or, surprisingly, to</p>
<pre><code>mv *.pyc $DEST_DIR
</code></pre>
<p>)</p>
http://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory/612002#6120027Answer by mikl for Can compiled bytecode files (.pyc) get generated in different directory?mikl2009-03-04T19:10:29Z2009-03-04T19:17:04Z<p>This is answered in "<a href="http://stackoverflow.com/questions/471928/way-to-have-compiled-python-files-in-a-seperate-folder">Way to have compiled python files in a seperate folder?</a>"</p>
<p>Short story: <strong>No</strong>.</p>
<p>To clarify: You <em>can</em> compile bytecode and put it elsewhere as per Brian R. Bondy's suggestion, but unless you actually run it from there (and not from the folder you want to keep pristine) Python will still output bytecode where the .py files are.</p>
http://stackoverflow.com/questions/611967/can-compiled-bytecode-files-pyc-get-generated-in-different-directory/612145#6121452Answer by ΤΖΩΤΖΙΟΥ for Can compiled bytecode files (.pyc) get generated in different directory?ΤΖΩΤΖΙΟΥ2009-03-04T19:46:22Z2009-03-04T19:46:22Z<p>In case the "littering" indeed is your problem, you can always pack <code>.py</code>, <code>.pyc</code> and/or <code>.pyo</code> files in a .zip file and append it to your <code>sys.path</code>.</p>