Re: Installing Django 1.0.2...

2009-01-31 Thread mic

hi Karen,

>> That's odd. Do you have the files:

>> C:\Django-1.0.2-final\django\utils\__init__.py
>> C:\Django-1.0.2-final\django\utils\version.py

I have the following structure...

C:\Django-1.0.2-final\django\__init__.py
C:\Django-1.0.2-final\django\utils\version.py

Can't figure out why this is not working

On Jan 6, 9:11 am, "Karen Tracey"  wrote:
> On Tue, Jan 6, 2009 at 7:16 AM, Jay  wrote:
>
> > Karen, thanks for your comments, you are right.
> > However, it turns out that the file "...\Django-1.0.2-final\django
> > \utils\__init__.py" has size 0, and it seems when using winzip ( I
> > just realized why 7-zip may have been required for unzipping), the 0
> > size file is *not*  written out. In fact "viewing" the file causes an
> > error (at least on my version winzip 7.0 SR-1). The simple work around
> > is to create an empty file named __init__.py in "...\Django-1.0.2-final
> > \django\utils".
>
> > Now the command "setup.py install" works just fine.
>
> Be aware there are many more 0-byte __init__.py files in the django
> tarball.  Any tool that doesn't correctly extract them is probably not
> something you want to be using.  These files are common in any Python-based
> project.
>
> Karen
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Installing Django 1.0.2...

2009-01-06 Thread Karen Tracey
On Tue, Jan 6, 2009 at 7:16 AM, Jay  wrote:

>
> Karen, thanks for your comments, you are right.
> However, it turns out that the file "...\Django-1.0.2-final\django
> \utils\__init__.py" has size 0, and it seems when using winzip ( I
> just realized why 7-zip may have been required for unzipping), the 0
> size file is *not*  written out. In fact "viewing" the file causes an
> error (at least on my version winzip 7.0 SR-1). The simple work around
> is to create an empty file named __init__.py in "...\Django-1.0.2-final
> \django\utils".
>
> Now the command "setup.py install" works just fine.
>

Be aware there are many more 0-byte __init__.py files in the django
tarball.  Any tool that doesn't correctly extract them is probably not
something you want to be using.  These files are common in any Python-based
project.

Karen

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Installing Django 1.0.2...

2009-01-06 Thread Jay

Karen, thanks for your comments, you are right.
However, it turns out that the file "...\Django-1.0.2-final\django
\utils\__init__.py" has size 0, and it seems when using winzip ( I
just realized why 7-zip may have been required for unzipping), the 0
size file is *not*  written out. In fact "viewing" the file causes an
error (at least on my version winzip 7.0 SR-1). The simple work around
is to create an empty file named __init__.py in "...\Django-1.0.2-final
\django\utils".

Now the command "setup.py install" works just fine.

Jay

On Dec 31 2008, 9:14 am, "Karen Tracey"  wrote:
> On Wed, Dec 31, 2008 at 3:36 AM, mic  wrote:
>
> > I am a first time python/django user
>
> > running "python setup.py install" gives me this error
>
> > Traceback (most recent call last):
> >  File "setup.py", line 69, in 
> >    version = __import__('django').get_version()
> >  File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
> > get_version
> >    from django.utils.version import get_svn_revision
> > ImportError: No module named utils.version
>
> > Any help is appreciated.
>
> > Thanks for the help.
>
> That's odd. Do you have the files:
>
> C:\Django-1.0.2-final\django\utils\__init__.py
> C:\Django-1.0.2-final\django\utils\version.py
>
> If not, something has gone wrong with unpacking the 1.0.2 tarfile because
> those files are in it.
>
> If you do have those files, what version of Python are you using?
>
> Karen

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Installing Django 1.0.2...

2008-12-31 Thread Karen Tracey
On Wed, Dec 31, 2008 at 9:20 AM, Peter  wrote:

>
> Python cannot find django/utils/version.py. Usually everything needed
> for
> to run django (which is everything in the 'django' folder) is put
> under the folder 'site-packages'
> in your pythin installation. AFAIK simply copying C:\Django-1.0.2-final
> \django to site-packages\django
> should work.
>

The command that is failing here is "python setup.py install".  It should
not be necessary to copy anything to site-packages prior to running the
install command.

Karen


> -- Peter
>
> On Dec 31, 8:46 am, mic  wrote:
> > I am a first time python/django user..
> >
> > Running "python setup.py install" from django-1.0.2-final directory
> > gives me this error
> >
> > Traceback (most recent call last):
> >   File "setup.py", line 69, in 
> > version = __import__('django').get_version()
> >   File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
> > get_version
> > from django.utils.version import get_svn_revision
> > ImportError: No module named utils.version
> >
> > Any ideas on what I am missing?
> >
> > Thanks
> >
> > Mic
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Installing Django 1.0.2...

2008-12-31 Thread Peter

Python cannot find django/utils/version.py. Usually everything needed
for
to run django (which is everything in the 'django' folder) is put
under the folder 'site-packages'
in your pythin installation. AFAIK simply copying C:\Django-1.0.2-final
\django to site-packages\django
should work.

-- Peter

On Dec 31, 8:46 am, mic  wrote:
> I am a first time python/django user..
>
> Running "python setup.py install" from django-1.0.2-final directory
> gives me this error
>
> Traceback (most recent call last):
>   File "setup.py", line 69, in 
>     version = __import__('django').get_version()
>   File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
> get_version
>     from django.utils.version import get_svn_revision
> ImportError: No module named utils.version
>
> Any ideas on what I am missing?
>
> Thanks
>
> Mic
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Installing Django 1.0.2...

2008-12-31 Thread Karen Tracey
On Wed, Dec 31, 2008 at 3:36 AM, mic  wrote:

>
> I am a first time python/django user
>
> running "python setup.py install" gives me this error
>
> Traceback (most recent call last):
>  File "setup.py", line 69, in 
>version = __import__('django').get_version()
>  File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
> get_version
>from django.utils.version import get_svn_revision
> ImportError: No module named utils.version
>
> Any help is appreciated.
>
> Thanks for the help.
>

That's odd. Do you have the files:

C:\Django-1.0.2-final\django\utils\__init__.py
C:\Django-1.0.2-final\django\utils\version.py

If not, something has gone wrong with unpacking the 1.0.2 tarfile because
those files are in it.

If you do have those files, what version of Python are you using?

Karen

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Installing Django 1.0.2...

2008-12-31 Thread mic

I am a first time python/django user

running "python setup.py install" gives me this error

Traceback (most recent call last):
  File "setup.py", line 69, in 
version = __import__('django').get_version()
  File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
get_version
from django.utils.version import get_svn_revision
ImportError: No module named utils.version

Any help is appreciated.

Thanks for the help.

Madhav

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Installing Django 1.0.2...

2008-12-31 Thread mic

I am a first time python/django user..

Running "python setup.py install" from django-1.0.2-final directory
gives me this error

Traceback (most recent call last):
  File "setup.py", line 69, in 
version = __import__('django').get_version()
  File "C:\Django-1.0.2-final\django\__init__.py", line 13, in
get_version
from django.utils.version import get_svn_revision
ImportError: No module named utils.version

Any ideas on what I am missing?

Thanks

Mic

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---