i don't know why, but pip does only install to global path, although i'am working on a env:
macbook$ which python
/opt/local/bin/python
macbook$ which pip
/usr/local/bin/pip
macbook$ workon ivm
(ivm)macbook$ pip install django
Requirement already satisfied (use --upgrade to upgrade): django in /Library/Python/2.7/site-packages
But this Path is not the correct path of my virtualenv. I see don't way. What is a possible solution for that?
Thanks!