IPython and virtualenv

Recently I started developing my python applications using virtualenv so that I don’t clutter up the system’s python installation with non-system python packages.

Everything was good until I wanted to use IPython instead of python’s shell…

The issue is that virtualenv creates a different python executable that ...

more ...