If you follow the simple configure -> make -> make install process for compiling python from source code, you end up with a very large install that includes a whole lot of files that are not necessary for a functional python environment. eg: All .py files are left in the installation (not just the .pyc or .pyo files), all the unit tests are carried over for each library in the lib folders, man pages are included, etc.
Is there a canned way (make option?) to ignore or strip out the 'unnecessary' files during the install process so you are left with a minimalist, but fully functional, python distribution?
If no pre-made procedure, what files can be stripped out, while being certain that the installation will still work on the machine it was installed?
make altinstallthat omits the symlink to the base namepython. – Keith Feb 28 '11 at 6:18altinstall,libinstall, etc) and can't figure out the right combination... if it exists!cleananddistcleanhave some of the right logic (rm'ing.pyfiles, for example), but not seemingly applicable to the installation dir. Strangely, I can't find any docs onaltinstalland the like anywhere at all (there are a zillion in there). – Russ Feb 28 '11 at 6:24