cx-freeze
distributing independent python app to other machines
I created independent python app using cxfreeze under linux and can run it other machines without python and other dependencies.[详细]
2023-01-06 05:49 分类:问答cx_Freeze and PYC/PYD files
I\'m using cx_Freeze to freeze my python program. On running cx_Freeze, a bunch of PYD files are created, a whole bunch of PYC files are put into a archive named library.zip and a few DLL files are th[详细]
2022-12-31 23:57 分类:问答How can I freeze a dual-mode (GUI and console) application using cx_Freeze?
I\'ve developed a Python application that runs both in the GUI mode and the console mode. If any arguments are specified, it runs in a console mode else it runs in the GUI mode.[详细]
2022-12-31 10:31 分类:问答SDL/Pygame failing to load PNG images with cx_Freeze
I\'m running Python 3.1 on Windows and I\'m trying to distribute my Pygame script as an executable via cx_Freeze. Right now it seems to be working except that the exe build can\'t load any of my image[详细]
2022-12-31 10:29 分类:问答How can I hide the console window when freezing wxPython applications with cxFreeze?
I\'m developing a Python ap开发者_StackOverflowplication using wxPython and freezing it using cxFreeze. All seems to be going fine apart from this following bit:[详细]
2022-12-31 09:22 分类:问答Missing multiprocessing module when freezing Python code
I\'m using cx_Freeze to freeze my Python code so I can distribute it as executable on Windows systems. It works fine but it\'s missing a few modules. I use some open-source libraries in my project e.g[详细]
2022-12-25 09:58 分类:问答How can I bundle other files when using cx_freeze?
I\'m using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I\'ve created the setup.py to build my executable and everything works fine.[详细]
2022-12-25 01:21 分类:问答Which files to distribute using cx_Freeze?
I\'m using cx_freeze to freeze a Python script for distribution 开发者_运维知识库to other windows systems. I did everything as instructed and cx_freeze generated abuild\\exe.win32-2.6 folder in the fo[详细]
2022-12-25 01:09 分类:问答cx_Freeze ImportError: cannot import name
I\'m trying create an executable for Windows for a GUI application in tkinter using the ttk module. I made an exe with cx_freeze, but when I run the app in the console it gives me the following error开[详细]
2022-12-19 07:18 分类:问答