I just tried to install virtualenvwrapper and when I run the following (as found in the instructions)

source /usr/local/bin/virtualenvwrapper.sh

It failed with the following :

-bash: /usr/local/bin/virtualenvwrapper.sh: line 347: syntax error near unexpected token `('
-bash: /usr/local/bin/virtualenvwrapper.sh: line 347: `workon () {'

Anybody else is experimenting this?

link|improve this question

Find out it was a specific problem with my setup (had an alias called workon, then I got 2 python install (thx mac os X) and pip install the librairies in the wrong one. – Julien Grenier Apr 15 '11 at 13:39
feedback

1 Answer

up vote 3 down vote accepted

You may clean up your Bash shell environment a bit before sourcing /usr/local/bin/virtualenvwrapper.sh.

unalias -a
unset -f $(compgen -A function)
source /usr/local/bin/virtualenvwrapper.sh
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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