Most voted "cx-freeze" questions
cx_Freeze is a set of scripts and modules that aims to freeze scripts written in the Python language into executables in the same way as py2exe and py2app. Unlike these two tools, cx_Freeze is cross-platform and should work on any platform where Python itself works. It requires Python 2.7 or higher and works with Python 3.
Learn more…7 questions
Sort by count of
-
1
votes1
answer247
viewsPassing arguments to python . exe with cx_Freeze
I have this code to test the script passage ola py. import sys for arg in sys.argv: print (arg) print ("Hello World!") setup py. from cx_Freeze import setup, Executable setup( name='Ola',…
-
1
votes0
answers35
viewsProblems in transforming . py to . exe from my project to recognize images with opencv
I have a project of recognizing images using opencv, I separated it into 3 packages plus the code of the graphical interface in Tkinter that controls the activation. It works normally, but when I…
-
0
votes0
answers125
viewsVCRUNTIME140.dll was not found running cx_freeze executable
A few days ago I developed a Python application and managed an executable using the package cx_freeze with the following code: from cx_Freeze import setup, Executable setup( name = "Minha…
-
0
votes1
answer256
viewsProblem to convert . py to executable with cx_freeze
I tried several times and it does not work in windows 7 and in other versions the interface opens does not connect to the DATABASE all dlls have already been imported '''from cx_Freeze import setup,…
-
0
votes1
answer110
viewsExecution error in cx_Freeze
I am trying to make an executable of a script that I did where the program performs, in summary, the following tasks: 1 - Receives input from the operator 2 - Create some folders based on the…
-
0
votes0
answers10
viewsHow to use tensorboard projector with cx_freeze?
I am using cx_freeze to generate an executable of two python scripts, a first to create the tensorboard log variables and the second to call and run tensorboard. They work perfectly on my python…
-
0
votes0
answers16
viewsCx_freeze. Error with Cx_oracle client when running the program on another computer
I developed a GUI program using Pyqt5 for users to feed a "Mysql" database (which is installed on a server on the same network as other computers). However this program needs to get information from…