Maybe it got corrupted and another download may fix it.
Maybe Windows 7 thinks it knows better than you and is trying to protect
you from yourself by stopping you from doing what you want until you
adjust the properties of the tar.gz file to take all responsibility from
Windows so it doesn't have to worry.
Maybe you don't have Win7 installation privileges.
Once you get it opened, drill down until you see a directory containing
setup.py and drag that directory to a convenient temporary location. cd
into that temp dir and open a command prompt. At the command line do ...
python setup.py install
... which ought to put django into your site-packages directory.
You should not need cygwin unless you intend to compile python from
source. Django is python all the way down.
hth
Mike
2) You can see if Python's gzip likes your archive (from Python help):
import gzip
f = gzip.open('/home/joe/file.txt.gz', 'rb')
file_content = f.read()
f.close()
3) If it is a 64 bit/Windows 7 issue then:
Have you tried changing your 7z's compatibility settings to run it in an older mode? In explorer: Right-click on exe file -> properties -> compatibility -> "Run this program in compatibility mode for" and then choose Windows XP
Hi,
Thanks
Keshav Magge
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.