Skip to content

Commit

Permalink
Add buildPy2exe troubleshooting message showing zope.interface fix an…
Browse files Browse the repository at this point in the history
…d expected NSIS Unicode location
  • Loading branch information
Et0h committed Jan 26, 2015
1 parent d955d46 commit 3e6316e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions buildPy2exe.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit 3e6316e

Please sign in to comment.