Skip to content

Instantly share code, notes, and snippets.

@glciampaglia
Created June 27, 2013 15:16
Show Gist options
  • Save glciampaglia/5877320 to your computer and use it in GitHub Desktop.
Save glciampaglia/5877320 to your computer and use it in GitHub Desktop.
Shell enviroment for Python development on the CNetS servers.
# 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