I am using Python 2.7 and I've just created a virtual environment using the command virtualenv testingdir
and inside the directory contains 4 subdirectories: bin
, include
, lib
, and local
.
I cd testingdir
and execute bin/pip install flask-wtf
, however when I execute pip freeze
I get a long list of all the dependencies and even when I exit out of the testingdir
directory I still get the same output when I use pip freeze
. Can someone explain how to get only the dependencies for my virtual environment only?