Re: xlrd question

2007-08-06 Thread John Machin
On Aug 4, 10:48 am, [EMAIL PROTECTED] wrote: > I ran your code which gave me this: > > >>> import sys, xlrd; print sys.version; print xlrd.__file__ > > 2.3.5 (#1, Jan 30 2006, 13:30:29) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1819)] > /System/Library/Frameworks/Python.framework/Versions/2.3

Re: xlrd question

2007-08-06 Thread John Machin
On Aug 5, 7:31 pm, has <[EMAIL PROTECTED]> wrote: > > Nope, DistUtils will copy all modules to site-packages as part of the > installation procedure. If you're a developer you'll probably want to > keep the original distribution around as it'll contain documentation, > examples, etc. which you'll

Re: xlrd question

2007-08-06 Thread has
On 5 Aug, 19:43, jay <[EMAIL PROTECTED]> wrote: > So if I'm understanding this correctly, it really only > installs something in '/Library/Python/2.3/site-packages' Correct. > (as well as > an alias to it from '/System/Library/Frameworks/Python.framework/ > Versions/2.3/lib/python2.3/site-pa

Re: xlrd question

2007-08-05 Thread jay
Hi Has, >> 2.3.5 (#1, Jan 30 2006, 13:30:29) >> [GCC 3.3 20030304 (Apple Computer, Inc. build 1819)] >> /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >> python2.3/site -packages/ >> xlrd/__init__.pyc > > Note that: > > /System/Library/Frameworks/Python.framework/Versions/2.3/lib/

Re: xlrd question

2007-08-05 Thread has
On Aug 4, 1:48 am, [EMAIL PROTECTED] wrote: > I ran your code which gave me this: > > >>> import sys, xlrd; print sys.version; print xlrd.__file__ > > 2.3.5 (#1, Jan 30 2006, 13:30:29) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1819)] > /System/Library/Frameworks/Python.framework/Versions/2.3

Re: xlrd question

2007-08-03 Thread John Machin
On Aug 4, 1:22 am, [EMAIL PROTECTED] wrote: > When running 'python setup.py install' to install items for xlrd to work, > does anybody know > what items are > installed and where items are installed at on a Mac (OS 10.4)? I'm assuming > it mainly uses > things out of the xlrd > folder, but was c

xlrd question

2007-08-03 Thread JYOUNG79
When running 'python setup.py install' to install items for xlrd to work, does anybody know what items are installed and where items are installed at on a Mac (OS 10.4)? I'm assuming it mainly uses things out of the xlrd folder, but was curious if it copies files to other locations. Thanks.