Can I run the python interpreter without generating the compiled .pyc files?
|
From "What’s New in Python 2.6 - Interpreter Changes":
Update 2010-11-27: Python 3.2 addresses the issue of cluttering source folders with |
||||
|
|
|||||||||
|
|
There actually IS a way to do it in Python 2.3+, but it's a bit esoteric. I don't know if you realize this, but you can do the following:
According to the zipimport library:
Thus, all you have to do is zip the files up, add the zipfile to your sys.path and then import them. If you're building this for UNIX, you might also consider packaging your script using this recipe: unix zip executable, but note that you might have to tweak this if you plan on using stdin or reading anything from sys.args (it CAN be done without too much trouble). In my experience performance doesn't suffer too much because of this, but you should think twice before importing any very large modules this way. |
||||
|
|
|
In 2.5, theres no way to suppress it, other than measures like not giving users write access to the directory. In python 2.6 and 3.0 however, there may be a setting in the sys module called "dont_write_bytecode" that can be set to suppress this. This can also be set by passing the "-B" option, or setting the environment variable "PYTHONDONTWRITEBYTECODE" |
|||
|
|
|
As far as I know python will compile all modules you "import". However python will NOT compile a python script run using: "python script.py" (it will however compile any modules that the script imports). The real questions is why you don't want python to compile the modules? You could probably automate a way of cleaning these up if they are getting in the way. |
|||
|
|
|
You could make the directories that your modules exist in read-only for the user that the Python interpreter is running as. I don't think there's a more elegant option. PEP 304 appears to have been an attempt to introduce a simple option for this, but it appears to have been abandoned. I imagine there's probably some other problem you're trying to solve, for which disabling .py[co] would appear to be a workaround, but it'll probably be better to attack whatever this original problem is instead. |
|||
|
|
|
If you run a python file directly (#! /usr/bin/python at the top of the file) it should interpret it directly instead of byte-compiling it. |
|||||
|
Rather adding this in the Parent Module, try adding this in the referenced Script. This works cool. Thanks to @te wilson |
|||
|
|
|
Super-dumb solution but I thought I'd post it anyway ;) Add this your your ~.bash_rc:
EDIT: I also found this works.
|
|||||
|
