1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# .pathosrc
#
# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)
# Copyright (c) 1997-2016 California Institute of Technology.
# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation.
# License: 3-clause BSD. The full license text is available at:
# - https://github.com/uqfoundation/pox/blob/master/LICENSE
# user environment
PATH=$PATH:.:$HOME/bin
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:$HOME/lib
MYPYTHON = $HOME/python
if [ "$PYTHONPATH" = "" ]
then
PYTHONPATH=.:$MYPYTHON
else
PYTHONPATH=.:$MYPYTHON:$PYTHONPATH
fi
export PATH
export LD_LIBRARY_PATH
export PYTHONPATH
export PYTHONSTARTUP=$HOME/.python
export PYTHONHISTORY=$HOME/.pyhistory
unset USERNAME
# user aliases
alias pythonpath='python -c "import sys; print(sys.path)"'
# EOF
|