1
I am trying to install the latest version of Django (1.9.6) in my virtualenv, but when I use the Pip install Django command, within the virtual environment, I get the following return:
Requirement already satisfied (use --upgrade to upgrade): django==1.9.6 in /usr/local/lib/python2.7/dist-packages
Look man, are you sure the virtual environment is activated? It is saying that Django is already in the latest version. However, this latest version is in a system folder and not in a virtual environment.
– ppalacios
Enter the
venv
using the codesource /venv/bin/activate
. If already on virtualenv post what returns onpip freeze
– Leonardo Nascimento Cintra