Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activate 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # This file must be used with "source bin/activate" *from bash*
  2. # you cannot run it directly
  3. deactivate () {
  4. # reset old environment variables
  5. if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
  6. PATH="${_OLD_VIRTUAL_PATH:-}"
  7. export PATH
  8. unset _OLD_VIRTUAL_PATH
  9. fi
  10. if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
  11. PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
  12. export PYTHONHOME
  13. unset _OLD_VIRTUAL_PYTHONHOME
  14. fi
  15. # This should detect bash and zsh, which have a hash command that must
  16. # be called to get it to forget past commands. Without forgetting
  17. # past commands the $PATH changes we made may not be respected
  18. if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
  19. hash -r
  20. fi
  21. if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
  22. PS1="${_OLD_VIRTUAL_PS1:-}"
  23. export PS1
  24. unset _OLD_VIRTUAL_PS1
  25. fi
  26. unset VIRTUAL_ENV
  27. if [ ! "$1" = "nondestructive" ] ; then
  28. # Self destruct!
  29. unset -f deactivate
  30. fi
  31. }
  32. # unset irrelevant variables
  33. deactivate nondestructive
  34. VIRTUAL_ENV="/Users/Esthi/thesis_ek/thesisenv"
  35. export VIRTUAL_ENV
  36. _OLD_VIRTUAL_PATH="$PATH"
  37. PATH="$VIRTUAL_ENV/bin:$PATH"
  38. export PATH
  39. # unset PYTHONHOME if set
  40. # this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
  41. # could use `if (set -u; : $PYTHONHOME) ;` in bash
  42. if [ -n "${PYTHONHOME:-}" ] ; then
  43. _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
  44. unset PYTHONHOME
  45. fi
  46. if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
  47. _OLD_VIRTUAL_PS1="${PS1:-}"
  48. if [ "x(thesisenv) " != x ] ; then
  49. PS1="(thesisenv) ${PS1:-}"
  50. else
  51. if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
  52. # special case for Aspen magic directories
  53. # see http://www.zetadev.com/software/aspen/
  54. PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
  55. else
  56. PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
  57. fi
  58. fi
  59. export PS1
  60. fi
  61. # This should detect bash and zsh, which have a hash command that must
  62. # be called to get it to forget past commands. Without forgetting
  63. # past commands the $PATH changes we made may not be respected
  64. if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
  65. hash -r
  66. fi