--- aliases: - /2010/12/force-local-install-of-python-module categories: - python date: 2010-12-03 22:18 layout: post slug: force-local-install-of-python-module title: force local install of python module --- python setup.py install --prefix FOLDER


creates lib/python2.6/site-packages, to force a local install you should use:

python setup.py install --install-lib FOLDER