activate 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. # Call hash to forget past commands. Without forgetting
  16. # past commands the $PATH changes we made may not be respected
  17. hash -r 2> /dev/null
  18. if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
  19. PS1="${_OLD_VIRTUAL_PS1:-}"
  20. export PS1
  21. unset _OLD_VIRTUAL_PS1
  22. fi
  23. unset VIRTUAL_ENV
  24. unset VIRTUAL_ENV_PROMPT
  25. if [ ! "${1:-}" = "nondestructive" ] ; then
  26. # Self destruct!
  27. unset -f deactivate
  28. fi
  29. }
  30. # unset irrelevant variables
  31. deactivate nondestructive
  32. # on Windows, a path can contain colons and backslashes and has to be converted:
  33. if [ "$OSTYPE" = "cygwin" ] || [ "$OSTYPE" = "msys" ] ; then
  34. # transform D:\path\to\venv to /d/path/to/venv on MSYS
  35. # and to /cygdrive/d/path/to/venv on Cygwin
  36. export VIRTUAL_ENV=$(cygpath "C:\Users\locadm\Desktop\django_exam\venv")
  37. else
  38. # use the path as-is
  39. export VIRTUAL_ENV="C:\Users\locadm\Desktop\django_exam\venv"
  40. fi
  41. _OLD_VIRTUAL_PATH="$PATH"
  42. PATH="$VIRTUAL_ENV/Scripts:$PATH"
  43. export PATH
  44. # unset PYTHONHOME if set
  45. # this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
  46. # could use `if (set -u; : $PYTHONHOME) ;` in bash
  47. if [ -n "${PYTHONHOME:-}" ] ; then
  48. _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
  49. unset PYTHONHOME
  50. fi
  51. if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
  52. _OLD_VIRTUAL_PS1="${PS1:-}"
  53. PS1="(venv) ${PS1:-}"
  54. export PS1
  55. VIRTUAL_ENV_PROMPT="(venv) "
  56. export VIRTUAL_ENV_PROMPT
  57. fi
  58. # Call hash to forget past commands. Without forgetting
  59. # past commands the $PATH changes we made may not be respected
  60. hash -r 2> /dev/null