python - CX_Freeze - Error while loading shared object from library.zip: not a directory -
i bundling graphical application cx_freeze ubuntu 14, , added dependency on cefpython3. installed package deb file, , software runs fine command line (python (name-of-program).pyw).
i made sure package included adding
packages = ["cefpython3"] to setup.py. complained not find
(path-to-folder)/library.zip/cefpython3/libcef.so so added zip via
zip_includes=[("/usr/lib/pymodules/python2.7/cefpython3/libcef.so","cefpython3/libcef.so") and if open library.zip find libcef.so inside cefpython3, should.
but when run, complains not directory:
oserror: (path-to-folder)/library.zip/cefpython3/libcef.so: cannot open shared object file: not directory i tried adding libcef.so otherwise via bin_include , include_files, still tries open in library.zip, , fails when cannot.
what doing wrong?
Comments
Post a Comment