Under Windows 7 64bit, Python 3.5, I have pip installed PyInstaller and
pypiwin32 packages:
     >pip show pywin32
    Name: pywin32
    Version: 223
    ...
    Location: c:\python35\lib\site-packages

    >pip show pypiwin32
    Name: pypiwin32
    Version: 223
    ...
    Location: c:\python35\lib\site-packages
    Requires: pywin32

     >pip show pyinstaller
    Name: PyInstaller
    Version: 3.3.dev0+abfc80661
    ...
    Location: c:\python35\lib\site-packages

Under interactive Python 3.5 I can "import win32api" and that is fine.
I have double-checked the PATH and PYTHONPATH envars and they include the
Python35 lib and site-packages folders.


However PyInstaller is looking for more, in compat.py it looks for

            from win32ctypes.pywin32 import win32api

there is nothing named win32ctypes anywhere and I don't see it in pypi, so
that can't possibly work.

When I run

    python -m PyInstaller --version

it crashes with ImportError: No module named 'pywintypes'

and again, there is no such module known to pypi.

So what have I not done to install PyInstaller?

Thanks,
DC

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pyinstaller+unsubscr...@googlegroups.com.
To post to this group, send email to pyinstaller@googlegroups.com.
Visit this group at https://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/d/optout.

Reply via email to