1,635 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
301
views
py2exe: how to include additional resource files from dependancy
I'm trying to build a project that has a dependency on jsonschema. On building and running the project with py2exe I get this error at runtime:
INFO:runtime:Analyzing the code
INFO:runtime:Found 527 ...
0
votes
1
answer
72
views
Py2exe with cx_oracle. Exe won't run on other computers
I created a short script that connects to an Oracle db and pulls some data. This works on my PC as I have everything installed E.g. pycharm with cx_oracle etc.
I want to be able to run this on other ...
0
votes
0
answers
155
views
How to compile a python program without using pyinstaller or py2exe?
I would like to know if there is any way to compile a python program into an .exe file and speed it up.
Or maybe try to create my own C / C++ standalone exe that will run an embedded python ...
1
vote
0
answers
70
views
Different Tkinter Style Using Pyinstaller
I have a python script that generates a window with some buttons made with tkinter. When I convert to executable and send to potential users that does not have python installed, their window has a ...
1
vote
1
answer
128
views
Does _memimporter still exist in py2exe?
I have only recently started with py2exe, and I would like to use py2exe with MINGW64 Python3 programs (and corresponding libraries). However, the first example I tried failed to build.
After that, I ...
0
votes
0
answers
334
views
AttributeError: 'NoneType' object has no attribute 'rsplit' in py2exe
I hope my problem hasn't already been solved. I'm having a problem compiling my python program into an executable. The program I want to compile is with tkinter and I use py2exe to compile. Here is my ...
0
votes
0
answers
73
views
How to add binary libraries of eccodes to pyinstaller or py2exe?
I use Python 3.11.5 and Miniconda. I would like to create a Windows exe. The executable should display the content of the file on the console.
After creating and running the resulting executable, I ...
0
votes
1
answer
598
views
Getting error while installing py2exe for python 3.7.9 version
I am using Pycharm on Windows 10 and needed to install py2exe package. So I tried to install it with the github repository "https://github.com/lambacck/py2exe-3 ". I don't know what is the ...
1
vote
0
answers
184
views
Missing Modules message while compiling a program using py2exe
I am attempting to take a program I created and turn it into an executable. It is not a fancy program at all and I believe I should be able to bundle all the dependencies into the executable to make ...
0
votes
1
answer
101
views
Error with keystoneauth1 when building executables with Windows (pyinstaller, cx_Freeze, py2exe)
I am facing a problem when converting my app to .exe- file as the title says. The issue seems to be with keystoneauth1 library.
I created a minimal test "hello.py" for troubleshooting and ...
1
vote
0
answers
73
views
not sure how to interpret and solve ImportError from lxml using py2exe
I'm trying to build a standalone executable file from a python script using py2exe
The creation of the .exe file does not output any warning nor errors, but when i actually try to execute it from ...
0
votes
1
answer
57
views
Python to exe automatically close
I wrote a .py code and converted it to a .exe using pyinstaller.
It report the following problem:
If I double click the .exe the program execute correctly (takes some input file, takes some input ...
0
votes
1
answer
995
views
How to exclude unnecessary modules and files from packaged python application?
I am trying to package a python GUI application into a .exe file. However, the folder with the exe file includes a ton of unused modules that I have installed, like pygame and numpy. Deleting these ...
0
votes
1
answer
177
views
How to convert a .py to .exe if i want to include many subfolders and imported modules in the final executable?
I have developed a project which has the following structure :
web_app
└── website
| ├── __init__.py
| ├── auth.py
| ├── models.py
| ├── views.py
| ├── static
| │ ├── images
| │ │ └...
user avatar
user21955070
0
votes
1
answer
103
views
Can I use py2app or py2exe to make my python code as an exe/DMG to works on all windows or macs
My question is if for example if I build my python code using py2app and then transfer the Dist folder to another mac will it works on all mac os, and the same question for py2exe , will it works on ...