I came across this problem when I used Gooey, an extension that turns python console program into a GUI application. I followed the instructions here: https://github.com/chriskiehl/Gooey, wrote code and built it into an executable file using PyInstaller. My code and the build.spec file are as follows:

import os
from openpyxl import Workbook
from codecs import open as open_by_encoding
from gooey import Gooey, GooeyParser

@Gooey(language='english', default_size=(850, 350), program_name='Csv2Excel')
def transform():
    parser = GooeyParser(description="Csv2Excel")
    parser.add_argument('Filename', widget='FileChooser', help='Choose Input File')
    parser.add_argument('OutFile', widget='DirChooser', help='Choose Output Dir')
    args = parser.parse_args()
    input_csv = args.Filename
    output_excel = args.OutFile
    csv_filename, ext = os.path.splitext(os.path.basename(input_csv))
    output_excel = os.path.join(output_excel, '%s.xlsx' % csv_filename)
    workbook = Workbook()
    worksheet = workbook.get_sheet_by_name(workbook.get_sheet_names()[0])
    print 'parsing csv to excel...' % output_excel
    with open_by_encoding(input_csv, 'r', 'utf-8') as buf:
        for line in buf:
            worksheet.append([unicode(x) for x in line.strip().split(',')])
    print 'saving excel...' % output_excel
    workbook.save(output_excel)
    print 'successfully!'

import gooey
gooey_root = os.path.dirname(gooey.__file__)
gooey_languages = Tree(os.path.join(gooey_root, 'languages'), prefix = 'gooey/languages')
gooey_images = Tree(os.path.join(gooey_root, 'images'), prefix = 'gooey/images')
a = Analysis(['csv2excel/csv2excel.py'],
             pathex=['/Users/wei.chensh/Desktop/csv2excel'],
             binaries=[],
             datas=[],
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          a.binaries,
          a.zipfiles,
          a.datas,
          gooey_languages,
          gooey_images,
          name='csv2excel',
          debug=False,
          strip=False,
          upx=True,
          console=False,
          icon=os.path.join(gooey_root, 'images', 'program_icon.ico'))
app = BUNDLE(exe,
             name='csv2excel.app',
             icon=None,
             bundle_identifier=None)

But when I tried to run it from the command line:

✔ ~/Desktop/csv2excel/dist
23:52 $ ./csv2excel

It raised the following ImportError:

Traceback (most recent call last):
  File "csv2excel/csv2excel.py", line 6, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 389, in load_module
  File "gooey/__init__.py", line 2, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 389, in load_module
  File "gooey/python_bindings/gooey_decorator.py", line 14, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 389, in load_module
  File "gooey/gui/application.py", line 5, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 389, in load_module
  File "wx-3.0-osx_cocoa/wx/__init__.py", line 45, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 389, in load_module
  File "wx-3.0-osx_cocoa/wx/_core.py", line 4, in <module>
  File "/private/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/pip-build-GziXtU/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 546, in load_module
ImportError: dlopen(/var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/_MEINoVZlj/wx._core_.so, 2): Library not loaded: @loader_path/libpng16.16.dylib
  Referenced from: /var/folders/mh/9q630wzd6hz8m_dlc9l37q300000gn/T/_MEINoVZlj/libwx_osx_cocoau_xrc-3.0.dylib
  Reason: Incompatible library version: libwx_osx_cocoau_xrc-3.0.dylib requires version 48.0.0 or later, but libpng16.16.dylib provides version 38.0.0
Failed to execute script csv2excel

It seemed that libpng version is too old to support the wx. So I followed some googled instructions and upgraded libpng by homebrew but failed. It looks like libpng16.16 is the latest released version. I also made some trials following the suggestions in similar problems, but in vain.

B.T.W

I'm using OS X El Capitan 10.11.6 and Python 2.7.10

0

There are 0 best solutions below