Questions tagged [exe]

EXE is a common filename extension for an executable file (a program) in Microsoft Windows and other operating systems (e.g. DOS, OpenVMS, Symbian, and OS/2).

5454 questions
1
vote
1 answer

Need help creating an exe from python script

I am wanting to create an exe version of my python script so and I am using a friends computer to test. The script creates a basic text editor which can load, save etc. I am using http://www.py2exe.org/ to create the exe. and I have been using this…
Tom
  • 11
  • 1
1
vote
0 answers

cx_freeze Winerror 2 The system cannot find the file specified

Hi i am running windows 10 64bit. I am trying to make an executable file from a python file. I use cx_freeze for this but I got an error. This is the code i used import sys from cx_Freeze import setup, Executable # Dependencies are automatically…
1
vote
0 answers

Python exe too slow

I made a python program that read data from csv, sort it and show graphs using Plotly. When I tested using the .py file it works really fast, then when I convert it to .exe it starts to became slower. Here is my code print("Importando…
1
vote
0 answers

Deploying WPF Application with C++ DLL

I want to the WPF interface and C++ algorithm together to generate an "exe" file. I have done: WPF Deploying with C++ DLL strong text I use VS —— "Windows Installer Project" , a. File system-create new shortcuts-attributes-icons. b.…
lily
  • 11
  • 2
1
vote
0 answers

Python tkinter iconbitmap, onefile and add-data for exe

I am trying to change the default feather icon in tkinter to a personalized icon. I have the icon file and python file in the same folder. While building the exe using pyinstaller, I use add-data too. I use the following command in command…
rmore911
  • 195
  • 2
  • 13
1
vote
0 answers

Trying to make a standalone executable file of a flask application using pyinstaller

I am using pyinstaller to make a standalone executable version of flask app. On running the created executable file a fatal error popup is shown which states **"Failed to execute script pyi_rth_nltk"** Failed to load dynlib/dll…
Anol K
  • 11
  • 2
1
vote
1 answer

Build a standalone Octave executable that can run on AWS EC2

We have a math model written in Octave that we'd like to run in the cloud - perhaps an AWS EC2 or ECS instance. The reason for this is that we want to feed in data from our database (ElasticSearch) and not be reliant on one person's machine to run…
1
vote
0 answers

How to keep track of the applications opened with the amount of time they have been opened using java (WINDOWS 10)

I am trying to build a java program which runs in the background when the computer is turned on which tracks the activities performed (apps that have been opened and the time) and stores it in a .txt file but im not sure how to do the first part,…
1
vote
1 answer

C# Run EXE in protected zip file

I have compressed my application exe file into a password protected .zip archive. Now I want to run the application from another application. How can I let the other application run the compressed and file?
user13619793
1
vote
1 answer

How to run a program in WSL when I click on an executable?

Imagine I have a simple program that prints out hello, world to the terminal when executed. Usually, you would type in the terminal ./a.out or whatever the name and extension (or not) of the program. I want to create an executable file that, when…
user12184817
1
vote
1 answer

Compile several PY files into EXE

I have several py files (PyQt5 small application with several windows) which I would like to compile into 1 exe file. I tried to use pyinstaller with the following command: pyinstaller --onefile main.py but at some point I get this error message: …
DarkWarrior
  • 114
  • 1
  • 11
1
vote
2 answers

Python app to one file .exe, after compiling app won't run

Hello once again editing, My major issue was resolved, however, my up running to new issues when compiled, probably deserves a new post. I'm trying to research this issue. So far I found up that pyinstaller does not do jinja2. However, I can see in…
1
vote
0 answers

OpenCV(4.1.1) can't find starting number (in the name of file): (camera_stream_Url) in function 'cv::icvExtractPattern'""

>> my py script is running fine but when i created .py to .exe the below error is generated. OpenCV(4.1.1) C:\projects\opencv-python\opencv\modules\videoio\src\cap_images.cpp:253: error: (-5:Bad argument) CAP_IMAGES: can't find starting number (in…
Basit Ali
  • 11
  • 1
  • 2
1
vote
1 answer

How to execute an .exe file including blank spaces in it

So normally I have several *.bat files to automate some things in my computer. But I'm kinda stuck in this call... cd "C:\Users\user\AppData\Local\Programs\program2Execute" start program has spaces.exe I don't get the app executed, instead I get a…
DormantDemon
  • 57
  • 1
  • 8
1
vote
1 answer

Pygame game doesn't work after exporting to .exe with pyinstaller

Please read before you mark as duplicate. I made a game with pygame and would like to export it to an executable but it doesn't work. When I run the .exe file it opens a blank pygame window and a console with an error but it immediatly closes so i…
glizdamen
  • 33
  • 3