My virtualenv doesn't have the bz2 lib for whatever reason. I know I have bz2 becuase the system python can import it, how come my newly created virtualenv doesn't get it?
$ mkvirtualenv sentry
$ python -c "import bz2"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named bz2
$ deactivate
$ python -c "import bz2"
I also tried to recompile python into the virtualenv directory, but it didn't seem to work.