1,724 questions
0
votes
0
answers
80
views
cx_Freeze fatal error: "Unable to change DLL search path"
I am creating a Windows installer for an app using Inno Setup but encountering a cx_Freeze fatal error:
"Unable to change DLL search path",
When trying to run the installed app on Windows ...
0
votes
0
answers
26
views
EXE created using cx_Freeze running well in my machine, but gives error in other machine
I have created an EXE file using cx_Freeze. When running on my machine, Python code as well as an EXE file work well. However, when trying the same on another machine where Python is not installed, it ...
0
votes
0
answers
24
views
Cx_freeze not importing gdal
I am attempting to use cx_freeze 7.2.10 to create exe with the gdal 3.10.2 library. I installed gdal in Windows using pip install and wheel. Pip list indicated that GDAl is installed and from python ...
0
votes
0
answers
10
views
Split zip-nonzip submodules within one cx_freeze package
I am (basically successfully) using cx_freeze to package a Python application that requires Pandas. Pandas is the only package I need that cannot go into cx_freeze's library zip. Specifically, I need ...
0
votes
0
answers
13
views
CX_Freeze errror
;
setup.py:
`from cx_Freeze import setup, Executable
build_options = {'packages': ['cassandra.marshal','cassandra.protocol','os'], 'excludes': ['cassandra-marshal','cassandra.protocol','os'],'...
1
vote
1
answer
283
views
cx_freeze: no module named rapidfuzz.distance.metrics_py
I am trying to add an icon to my python app.
I have added it to my config in setup.py and drew the icon.
However, there was no icon on the executable after I compiled it. I tried to run the program, ...
1
vote
1
answer
295
views
Missing dependencies with cx_freeze
I try to freeze my python project without any warnings or errors but I always getting a bunch of warning during the freeze.
while freezing my python program with cx_freeze I always getting this ...
0
votes
0
answers
55
views
cx_freeze failing to freeze torchvision
I am trying to use cx_freeze on a program using easyocr and it seems that cx_freeze is not properly freezing torchvision.
here is a minimal reproducible example.
python version = 3.12.4
cx_freeze==7.2....
1
vote
2
answers
93
views
Getting "sqllite3.OperationError: Unable to open database file" sometimes, but other times it works fine (cx_Freeze'd file)
I made an app which uses sqllite3 database. When I run the .py file it works just fine.
Here is the code for the database:
import sqlite3
connection = sqlite3.connect("game.db")
connection....
0
votes
2
answers
95
views
Problems with the python libraries speedtest/speedtes-cli and tkinter when using cx_freeze
I have written a script to perform a number of broadband speed tests using python/tkinter and the speedtest libraries (speedtest/speedtest-cli). The program works as expected when run as a normal ...
0
votes
0
answers
257
views
How to resolve cx_Freeze error about pdf2docx mupdf import?
I've never posted here before, but this time I'm genuinely stuck. I'm using cx_Freeze on a python script that uses pdf2docx. Running the python script normally works fine, but running cx_Freeze's ...
0
votes
1
answer
56
views
Why importing openpyxl and docx take so much time in compiled Tkinter?
I'm working on a software using Tkinter, I compiled it using CX_freeze and put it on a server and a lot of users had an abnormal loading time for it.
I added logs and I get HUGE load timesfor openpyxl ...
1
vote
0
answers
67
views
Python csv error when creating .exe file cx_freeze
I have a python project with the following files:
main.py
1.py
2.py
images (folder with a bunch of pngs)
testFiles (folder with a few files for unit tests)
the way the project works, main is a ...
1
vote
0
answers
71
views
Python312\python -OO setup.py build_exe throws Return code: 3221225477
In my setup_base.py script, when I import wx and run:
Python312\\python -OO setup.py build_exe
I am getting an exit code of 3221225477. When I remove the import wx, it succeeds with an exit code of 0....
1
vote
0
answers
55
views
Cz_freeze exe, cannot find pyarmor runtime generated module
So i got this setup for cx_freeze
import sys
from cx_Freeze import setup, Executable
build_exe_options = {
"packages": ["os", "sys", "hashlib", "json&...