I suspect the problem is using WinZip to try to unzip the tarball. Other users on this list have reported the same issue in the past. It seems that at least some versions of WinZip fail to extract 0-byte files from the archive file. This is a major problem for any type of Python source project since 0-byte __init__.py files are very common in Python source. The error message you are getting:
ImportError: No module named django is exactly what you would get if the __init__.py file were missing from the django subdirectory after decompressing/untarring the compressed tarfile. You need to use a Windows extraction tool that properly extracts 0-byte files from the archive. Karen -- http://tracey.org/kmt/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

