Download Django 1.3 Official Release Fail
When I try to download the 1.3 version of 开发者_如何学PythonDjango in Ubuntu 10.4, it saves it as index.html.
wget http://www.djangoproject.com/download/1.3/tarball/
I've done this successfully in the past. Python2.6 is installed. No previous versions of django are installed.
What gives?
wget --trust-server-name http://www.djangoproject.com/download/1.3/tarball/
Or you can manually force the name using:
wget -O Django-1.3.tar.gz http://www.djangoproject.com/download/1.3/tarball/
Looks like it redirects to http://media.djangoproject.com/releases/1.3/Django-1.3.tar.gz
精彩评论