For a while, I have been using virtualenv's for many python projects. When I tried to activate one of my virtualenv's, I typed:
source venv/bin/activate
Which generally does the trick. However, instead of my command prompt saying:
(venv)me@example:~/
It says:
(root)me@example:~/
My python version requirement and my packages that I installed on the virtualenv are not recognized. Why does this happen?