from this question:
Manage python version in different virtualenv with pythonbrew
I followed the instructions of the answer and typed in:
pythonbrew venv create project1
After doing this, virtualenv was installed and this new venv was installed here:
user/.pythonbrew/venvs/Python-2.7.6/project1
What I would like to know is how I would be able to install dependencies within this virtualenv using pip?
Based on my current knowledge, I would assume that running the command to install dependencies from the generic terminal spot (user/) will make the dependencies get installed in the main pythonbrew install and not the virtual environment.
I am building multiple web projects using different python tools (but the same/latest python 2.7 version), so I would like to keep each project(and their different dependencies) separate.