I am using a virtualenv. I have fabric installed, with pip. But a pip freeze does not give any hint about that. The packa
virtualenv
fabric
pip
pip freeze
Although your problem was specifically due to a typo, to help other users:
pip freeze doesn't show the dependencies that pip depends on. If you want to obtain all packages you can use pip freeze --all or pip list.
pip freeze --all
pip list