python - Executable created by PyInstaller is not working -
python - Executable created by PyInstaller is not working -
i have created simple game python , pygame , create executable each platform, people don't need install lot of dependencies seek game. seems pyinstaller looking for, have installed on ubuntu machine, developed game. tried run next command:
pyinstaller --onefile main.py and executable seems correctly created, when run it, next error:
traceback (most recent phone call last): file "<string>", line 1, in <module> file "/usr/local/lib/python2.7/dist-packages/pyinstaller/loader/pyi_importers.py", line 270, in load_module exec(bytecode, module.__dict__) file "/home/loris/dropbox/workspace/python/pymemory/build/main/out00-pyz.pyz/pygame", line 99, in <module> importerror: no module named base of operations i don't know solve problem , can't seem find else same one, there check seek prepare issue?
edit:
i succesfully managed create 32 bit executable on windows, thought problem lied in 64 bit version of python using, tried utilize pyinstaller 32 bit ubuntu virtual machine, result same.
python pygame cross-platform build-process pyinstaller
Comments
Post a Comment