I don't want to deal with virtualenv for a local Python installation, I just want to install a few packages locally without dealing with the PYTHONPATH environment variable, how do I do that?
|
|
||||
|
Python (as of 2.6 and 3.0) now searches in the ~/.local directory for local installs, which do not require administrative privileges to install, so you just need to point your installer to that directory. If you have already downloaded the package
If you are using easy_install and would like the package downloaded and installed:
It's a little more work if you are using pip to download and install:
|
|||
|
|
|
Even though I like Python as a language, distributing Python packages is a mess. I always find people not familiar with Python struggling with it. Next to the user-local install as outlined by Aron (using --user, or --prefix), another option is EasyBuild (http://hpcugent.github.com/easybuild/). Not only for Python packages, but for any (scientific) software package. Once EasyBuild has support for it, building and installing a software package is basically a single command. For a list of software packages currently supported, see https://github.com/hpcugent/easybuild/wiki/List-of-supported-software-packages. Disclaimer: I am a developer of EasyBuild. |
|||||||||||
|
|
@Aron: Be sure to add the local site-packages path to the environment variable $PYTHONPATH |
|||||||||||
|
--system-site-packages?) – Andreas Klöckner Sep 23 '12 at 17:09