Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know the obvious answer is to use virtualenv and virtualenvwrapper, but for various reasons I can't/don't want to do that. So how do I modify this command:

pip install package_name

to make pip install the package somewhere other than the default site-packages?

share|improve this question

2 Answers

up vote 74 down vote accepted

Use:

pip install --install-option="--prefix=$PREFIX_PATH" package_name

You might also want to use --ignore-installed to force all dependencies to be reinstalled using this new prefix. You can use --install-option to multiple times to add any of the options you can use with python setup.py install (--prefix is probably what you want, but there are a bunch more options you could use).

share|improve this answer
1  
if you do this, is there a way to get pip freeze to see the alternate directory? – Russ Jul 22 '11 at 6:54
2  
pip freeze looks on the path, so if you something like PYTHONPATH=$PREFIX_PATH/lib/python2.6/site-packages pip freeze it should see them. – Ian Bicking Aug 3 '11 at 20:53
1  
Using --prefix=$PREFIX_PATH doesn't seem to allow to have full control of installation directory as there's system specific suffix being appended to it (\Lib\site-packages on Windows for example). Is there a way to specify specific directory? – Piotr Dobrogost Jun 2 '12 at 22:04
1  
@Piotr: yes there is see my answer. Using '--prefix' is a bit coarse, but works nice if you want your pure python to go under /usr/lib/pythonX.Y/site-packages instead of /usr/local/lib/pythonX.Y/site-packages. – Anthon Jun 13 '12 at 14:39

Installing a python package often only includes some pure python files. If the package includes data, scripts and or executables, these are installed in different directories from the pure python files.

Assuming your package has no data/scripts/executables, and that you want your python files to go into /python/packages/package_name (and not some subdirectory a few levels below /python/packages as when using --prefix), you can use the one time command:

pip install --install-option="--install-purelib=/python/packages" package_name

If you want all (or most) of your packages to go there, you can edit your ~/.pip/pip.conf to include:

[install]
install-option=--install-purelib=/python/packages

That way you can't forget about having to specify it again and again.

Any excecutables/data/scripts included in the package will still go to their default places unless you specify addition install options (--prefix/--install-data/--install-scripts etc., for details look at the custom installation options).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.