I've got various versions of python installed on my Mac using Macports. When I've selected python 2.7 via $ port select python python27, virtualenvwrapper works perfectly.
But if I select another version of python, i.e. 2.6, virtualenvwrapper generates an error message: ImportError: No module named virtualenvwrapper.hook_loader
I checked my .profile and it's setting VIRTUALENVWRAPPER_PYTHON to /opt/local/bin/python, so it seems to me virtualenvwrapper should work regardless of which python I've selected.
Any idea what would cause virtualenvwrapper to generate a .hook_loader error when I switch python versions?
port select ...and sticking with your base 2.7, does just runningmkvirtualenv --python /path/to/python2.6work? It should automatically switch to (and set up the environment with) the correct interpreter. On my system (set up with homebrew),mkvirtualenv -p python2.6works fine. – Greg Haskins Jun 21 '11 at 2:21mkvirtualenv --python /path/to/python2.6 env_name. mkvirtualenv makes a folder called "env_name" in your$WORKON_HOME, which gets passed on to virtualenv as itsDEST_DIRargument. Without specifying a name, it would have a hard time figuring out where to set things up, that's for sure. – Greg Haskins Jun 23 '11 at 4:48