...
Code Block |
---|
/corral-repl/utexas/BioITeam/lib/python2.7/site-packages
|
If you are using the standard BioITeam profile (or at least including it), your PYTHONPATH environment variable is set so that you can load Python modules in this special directory in the usual way. To load "my_special_module" in our special Corral directory, just run
...
Code Block |
---|
python setup.py install --prefix=/corral-repl/utexas/BioITeam/python2.7/site-packages
|
Using easy_install
Try easy_install
as usual, but use the --install-dir=DIR
flag, so you would type something like:
Code Block |
---|
easy_install --install-dir=/corral-repl/utexas/BioITeam/lib/python2.7/site-packages <my_new_awesome_python_package>
|