Skip to main content

All Questions

Tagged with
1 vote
0 answers
44 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 ...
s.eyal's user avatar
  • 35
0 votes
1 answer
45 views

Python Kivy project is not getting Converted into portable .exe file

I've Created an exe file of my program. It works fine in my desktop. But in another desktop, if I'd only send the exe file, it says, 'No File\Directory named 'login.kv' found' I need a standalone exe ...
HP v232w's user avatar
-1 votes
1 answer
57 views

How can you save images not drive specific in python?

So I made a basic python script and converted it into an exe. When I made the script into an exe I was so excited and wanted to send it to my uncle .I compressed the script and a few files and images ...
Mielutu Nelutu's user avatar
1 vote
1 answer
63 views

the compiled code path to the location of the error is shown and not the executable path

I searched a lot about this problem although there are many trials of other people but this problem I couldn't find or may be I am using wrong terms while searching. I am using this method to create ...
Mour_Ka's user avatar
  • 258
1 vote
1 answer
182 views

How do I add an author using cx_Freeze?

I try: from cx_Freeze import setup, Executable build_exe_options = {"packages": ["torch", 'tensorflow']} target = Executable( script='start.py', ) setup( name='my', ...
Alex's user avatar
  • 21
0 votes
3 answers
763 views

FileNotFoundError: scipy.libs

I'm trying to build an exe file using cx_Freeze. But when I run the resulting file I get an error: FileNotFoundError: ..\build\exe.win-amd64-3.8\lib\scipy.libs Please tell me how to fix this problem?...
Alex's user avatar
  • 21
0 votes
2 answers
61 views

How to conver a Python file to EXE file inside a Python file

I am trying to create a python file and then convert it into an EXE. This is my current code: from cx_Freeze import setup, Executable spyerFile = open("myFile.py", "w+") ...
Wolf's user avatar
  • 25
0 votes
2 answers
514 views

Python to EXE - PySide2 and Custom Modules

I'm trying to create an EXE from a Python project I built and I'm running into some issues. I've done this before with PyInstaller for simpler tools and cx-freeze for tools where I use custom modules ...
PyHP3D's user avatar
  • 88
3 votes
0 answers
227 views

Dockerized python app versus executable in production

We have a python-based application deployed as a docker image on Azure production environment. We use Azure DevOps Pipeline Release to deploy it. Ordinary usage of the application is through batch and ...
Reda Belkhiri's user avatar
0 votes
1 answer
111 views

cx_Freeze application gives a strange error

I am trying to make my selenium project(that scrapes some data from a website and converting it into a sheets file) into an .exe file using cx_Freeze. When I run the setup.py file it is successfully ...
YahavB's user avatar
  • 97
1 vote
2 answers
9k views

Failed to execute script 'pyi_rth_win32comgenpy' due to unhandled exception: Module 'pythoncom' isn't in frozen sys.path

I am trying to convert my .py file to an .exe file and I have tried all methods (auto-py-to-exe, pyinstaller, cz_freeze) and it does create the exe file but it always gives an error or the window ...
Simran Farrukh's user avatar
0 votes
0 answers
117 views

How to set up rpy2 to build it into an .exe file with CX_Freeze?

I am trying to build an exe file from a program, which includes some rpy2 functions. To simplify this, i wrote a basic script, which will open a tkinter window saying "Hello World". This ...
msax's user avatar
  • 13
2 votes
1 answer
88 views

.exe disappeared after go elsewhere

I have made a .exe app with a .py and cx_Freeze. I can open my app and place it in my Windows taskbar at the bottom of the screen, but when I open it this doesn't open a tab like when you open an app ...
titoo's user avatar
  • 55
0 votes
2 answers
587 views

Main Python File Using Another Python File (I Want To Convert To .exe)

I Created a Program That Has 2 .py files. I Want To Make The Program a .exe file, I do it using cx_Freeze. My Problem Is That I Convert The main.py To .exe but The Second Python File Is Still a .py ...
user avatar
1 vote
2 answers
1k views

Is there any way to create MSI package of single executable exe file that is generated from pyinstaller --onefile?

I have created single file executable using pyinstaller for e.g demo.exe let us suppose i have to create an MSI of it, how i can achieve this i have already used INNO , AdvanceInstaller, EMCO, and few ...
Sheikh Sameen's user avatar

15 30 50 per page
1
2 3 4 5
10