Packing a python application into an executable -
i ve developed application using python 3.6. application includes pyqtgraph plotter internally refers qt modules. convert application stand-alone exe. ve tried following in vain
1) pyinstaller - supports till python 3.5
2) esky - internally uses py2exe [py2exe supports till python 3.4]
3) cx-freeze - had little success using this. creates exe dependencies' size adds 240mb. when exe run, throws error in numpy.
4) nuitka - tried this, in vain.
5) bb_freeze - supports till python 2.
can please suggest me packaging modules python 3.6?
Comments
Post a Comment