Search code examples
virtual-environment

How can i run already existing virtual enviroment that i created earlier?


I am learning Django, I know how to create virtual Env. but i don't know how to reactivate it . if i use this command -

mkvirtualenv test

then i get this message-

ERROR: virtualenv "test" already exists


Solution

  • You could use workon to switch to a virtual env that already exists:

    $ workon test