From 3e6316e960f735150110e9ae2a3ab5dabedbaf60 Mon Sep 17 00:00:00 2001 From: Et0h Date: Mon, 26 Jan 2015 00:47:11 +0000 Subject: [PATCH] Add buildPy2exe troubleshooting message showing zope.interface fix and expected NSIS Unicode location --- buildPy2exe.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/buildPy2exe.py b/buildPy2exe.py index 9f3113a..6c81bff 100644 --- a/buildPy2exe.py +++ b/buildPy2exe.py @@ -1,5 +1,14 @@ #!/usr/bin/env python #coding:utf8 + +''' *** TROUBLESHOOTING *** + +1) If you get the error "ImportError: No module named zope.interface" then add an empty __init__.py file to the PYTHONDIR/Lib/site-packages/zope directory + +2) It is expected that you will have Unicode NSIS from http://www.scratchpaper.com/ installed to: C:\Program Files (x86)\NSIS\Unicode\ + +''' + import sys try: if (sys.version_info.major != 2) or (sys.version_info.minor < 7):