Assuming you have Ubuntu on Windows installed. From CMD prompt:Python 2.7.12 $ sudo apt-get install virtualenv $ cd my_project_folder $ virtualenv venv $ source venv/bin/activate (venv) $ deactivate Install Django $ source venv/bin/activate (venv) $ pip install --upgrade pip (venv) $ pip install django |
Blog >