On Fri, 21 Jun 2013 06:54:11 -0600
Larry Martell <larry.mart...@gmail.com> wrote:

> Is there a ftp site I can download django 1.4 and 1.5 from? Usually I
> get it from https://www.djangoproject.com/download/1.5.1/tarball/
> but now I have to install it on a remote machine that I only have
> putty access to, so I can't run a browser.

When you have wget or curl available on the remtoe machine, you can simply do

  $ wget -O Django-1.5.1.tar.gz 
https://www.djangoproject.com/download/1.5.1/tarball/

or

  $ curl -L -o Django-1.5.1.tar.gz 
https://www.djangoproject.com/download/1.5.1/tarball/

to download it via HTTP.

Sebastian.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to