Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using virtualenv and the virtualenvwrapper. I can switch between virtualenv's just fine using the workon command.

me@mymachine:~$ workon env1
(env1)me@mymachine:~$ workon env2
(env2)me@mymachine:~$ workon env1
(env1)me@mymachine:~$

However, how do I exit all virtual machines and workon my real machine again? Right now, the only way I have of getting back to

me@mymachine:~$

is to exit the shell and start a new one. That's kind of annoying. Is there a command to workon "nothing", and if so, what is it? If such a command does not exist, how would I go about creating it?

share|improve this question

2 Answers

up vote 222 down vote accepted

Usually, activating a virtualenv gives you a command:

$ deactivate

which puts things back to normal.

Edit: I have just looked specifically again at the code for virtualenvwrapper, and, yes, it too supports "deactivate" as the way to escape from all virtualenvs.

share|improve this answer
12  
Thanks! Surprising that this isn't prominently mentioned, if at all, in the documentation. – Apreche Jun 13 '09 at 15:03
My virtualenv has no deactivate command – Prof. Falken Feb 6 at 16:44
1  
The “deactivate” command is not a binary, nor a script that you “source”; it is a shell alias that gets defined dynamically in your current shell by the “activate” script. – Brandon Rhodes Feb 6 at 22:28
@Apreche In the meantime (almost four years later) this appears to have been added to the documentation. – gertvdijk Mar 14 at 14:26

The fastest solution is to press new tab shortcut in your terminal (automatically creates new tab with deactivated virtual environment).

In my terminal on ubuntu it's Ctrl+t but default is Ctrl+Shift+t.

share|improve this answer
3  
This works but is rubbish if there's any other state you care about, e.g. ssh session. – Jonathan Hartley Sep 19 '12 at 23:13
This just creates a new shell, leaving the old shell in the virtualenv in the previous tab. The original question suggests "exit[ing] the shell and starting a new one"; that's preferable to this. – Jim Blandy Apr 8 at 16:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.