Advertisement
Guest User

Untitled

a guest
Oct 29th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.74 KB | None | 0 0
  1. export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\W\[\033[m\]\$ "
  2.  
  3. # mysql command
  4. export PATH=${PATH}:/usr/local/mysql/bin
  5. # mysqldb python library
  6. export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
  7.  
  8. export CLICOLOR=1
  9. export LSCOLORS=ExFxBxDxCxegedabagacad
  10. alias ls='ls -GFh'
  11.  
  12. export PYTHONPATH=/System/Library/Python/2.7/site-packages
  13.  
  14. # Setting PATH for Python 2.7
  15. # The orginal version is saved in .bash_profile.pysave
  16. PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
  17. export PATH
  18.  
  19. export LC_ALL=en_US.UTF-8
  20. export LANG=en_US.UTF-8
  21.  
  22. # Setting PATH for Python 3.5
  23. # The orginal version is saved in .bash_profile.pysave
  24. PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"
  25. export PATH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement