installing Django in a venv

1

I'm trying to install the latest version of Django (1.9.6) in my virtualenv, but when I use the pip install django command inside 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
    
asked by anonymous 01.06.2016 / 21:13

1 answer

1

The message tells you to use --upgrade on the command, since Django is already installed.

Use:

pip install --upgrade django

So the old version will be replaced by the latest one

    
01.06.2016 / 23:24