Cannot install Django 2 Beta 1 on Ubuntu Server 16.04
问题 I'm trying to install Django 2 beta 1 on an Ubuntu Server 16.04 using the command line shown on Django's download page without success. The given command line is: pip install --pre django but when I run it, it is trying to install Django 1.11.6. ( Downloading Django-1.11.6-py2.py3-none-any.whl (6.9MB) ) Does anyone know how I can successfully install the beta ? 回答1: Write explicit the version of Django you want to install: pip install --pre Django==2.0b1 The option --pre (prerelease) can be