Abhishek Chauhan
Abhishek Chauhan

Reputation: 421

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

Upvotes: 1

Views: 1541

Answers (1)

Mureinik
Mureinik

Reputation: 312106

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

$ workon test

Upvotes: 1

Related Questions