So I wanted to install iPython globally and have Django use it with manage.py shell, but I figures out that it will only use iPython if it is installed in the current environment. So using virtualenvwrapper i can use toggleglobalsitepackages to import iPython from the global python install. The only problem is when I freeze my requirements in PIP inside the virtualenv it exports all my global installs as well. I would like to be able to freeze only the install in the virtualenv.
Is this possible? Is there some other way I should be looking at my problem?