Advertisement
MrMetlHed

reporters_lab_bash_profile

Jul 15th, 2011
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1.  
  2. #include .bashrc if it exists
  3. if [ -f ~/.bashrc ] ; then
  4.      source ~/.bashrc
  5. fi
  6.  
  7. #set PATH so it includes private bin if it exists
  8. if [ -d ~/bin ] ; then
  9.     PATH=~/bin:"${PATH}"
  10. fi
  11.  
  12. #and the same with MANPATH
  13. if [ -d ~/man ] ; then
  14.      MANPATH=~/man:"${MANPATH}"
  15.      export MANPATH
  16. fi
  17.  
  18.  
  19.  
  20. #This fixes some pip / easy_install errors as things can't compile
  21. export ARCHFLAGS="-arch i386 -arch x86_64"
  22.  
  23.  
  24. # Setting PATH for Python 2.7
  25. # The orginal version is saved in .bash_profile.pysave
  26. PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
  27. export PATH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement