Stellen Sie die von easy_install.py installierten Pakete auf ~ / local ein. Unter Ubuntu 12.10.
/usr/local/lib/python2.7/dist-package/altinstall.pth
import os, site; site.addsitedir(os.path.expanduser('~/local/lib/python2.7'))
~/.pydistutils.cfg
[install]
install_lib = ~/local/lib/python2.7
install_scripts = ~/local/bin
Ich habe auf [dies] verwiesen (http://peak.telecommunity.com/DevCenter/EasyInstall#custom-installation-locations).
Es ist mein persönliches Hobby, dass das Installationsziel ~ / local / lib anstelle von ~ / lib ist. Andere Konfigurationssysteme können auch einfach mit --prefix = ~ / local ausgeführt werden.
Recommended Posts