Reputation: 421
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
Upvotes: 1
Views: 1541
Reputation: 312106
You could use workon
to switch to a virtual env that already exists:
$ workon test
Upvotes: 1