I'm doing a new install of virtualenvwrapper, and for some reason after running virtualenvwrapper.sh it's functions aren't available.

$ virtualenvwrapper.sh
creating.....
$ workon
workon: command not found

I know that it's running, aside from the successful creation of all the VE files, I've wrapped some of the function definitions in echo "please get here" statements and they all get hit.

So: what?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Oh I see, the correct thing to do is:

$ source virtualenvwrapper.sh

it was on my PATH, and getting run in a subshell, I guess.

link|improve this answer
you can add it to your .bashrc so you don't have to manualy source it every time – dm03514 Sep 25 '11 at 23:15
you can accept your answer and gain rep points. You can also upvote your answer. Good luck. – shellter Sep 27 '11 at 22:34
Not for two days, though :) – quodlibetor Sep 28 '11 at 2:28
feedback

Your Answer

 
or
required, but never shown

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