Created
June 27, 2013 15:16
-
-
Save glciampaglia/5877320 to your computer and use it in GitHub Desktop.
Shell enviroment for Python development on the CNetS servers.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use the Python 2.7 installation in /l/ | |
PYTHONROOT=/l/python2.7 | |
export PATH=$PYTHONROOT/bin:$PATH | |
export LD_LIBRARY_PATH=$PYTHONROOT/lib:$LD_LIBRARY_PATH | |
export PYTHONPATH=$HOME/local/lib/python:$PYTHONPATH | |
# My own local libraries and python modules are in ~/local | |
export PATH=$HOME/local/bin:$PATH | |
export MANPATH=$HOME/local/man:$MANPATH | |
export LD_LIBRARY_PATH=$HOME/local/lib:$LD_LIBRARY_PATH | |
export PKG_CONFIG_PATH=$HOME/local/lib/pkgconfig:$PKG_CONFIG_PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment