Am 01.03.2011 12:56, schrieb Hartmut Goebel:
Am 28.02.2011 22:06, schrieb Florian Höch:
Command line, from the 'root' pyinstaller directory (not the
'PyInstaller' module subdirectory).
IC, But I do not understand what is happening here.

No, stop, *aaaaaahhhhhh* It's Windows! Windows ignores case in filenames
*aaahhhh*

The scripts in utils try to import e.g. PyInstaller.bindepend. But since
Windows uses case-insensitive filenames, the file pyinstaller.py gets
loaded instead of PyInstaller/__init__.py (and further on
PyInstaller/bindepend.py)

Please run
python -v -c 'import PyInstaller.bindepend'

and post the relevant lines (after the Python interactive startup
message) here.

On my machine this looks like:

Python 2.6.5 (r265:79063, Oct 29 2010, 14:35:07)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import PyInstaller # directory PyInstaller
import PyInstaller # from PyInstaller/__init__.py
import PyInstaller.bindepend # from PyInstaller/bindepend.py

Ok, I get:

Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import PyInstaller # directory PyInstaller
# PyInstaller\__init__.pyc matches PyInstaller\__init__.py
import PyInstaller # precompiled from PyInstaller\__init__.pyc
# PyInstaller\bindepend.pyc matches PyInstaller\bindepend.py
import PyInstaller.bindepend # precompiled from PyInstaller\bindepend.pyc

Regards
--
Florian Höch

--
You received this message because you are subscribed to the Google Groups 
"PyInstaller" 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/pyinstaller?hl=en.

Reply via email to