-3
votes
1answer
71 views

Compiling python files [closed]

How do I compile a python file as an exe? So that the user can run the file by double clicking and not going through the python shell Does anyone know how? Thanks
1
vote
1answer
32 views

My program works in Python shell but doesn't recognize my input when it runs in cmd.exe

Hey I'm totally new at this and not sure why I'm even trying to run my code in the cmd.exe... But, when I run my script in there it doesn't recognize when I type in my correct password for the input. ...
-1
votes
1answer
33 views

How to be certain my python exe will run on any windows machine [closed]

I have recently made a simple python script. It has a front end GUI with a few buttons and read in serial data continuously. It performs some maths on the data before writing to file. I want to run ...
0
votes
1answer
54 views

Execute .exe file embedded in Python script

How can I load an exe file—stored as a base64 encoded string—into memory and execute it without writing it to disk? The point being, to put some kind of control/password/serial system in ...
0
votes
1answer
43 views

Protect Python script with Google Drive (perhaps Google App Engine)

I have trouble with understanding if it's possible to protect a python script from stealing it (I know this is not in fact possible but at least let's protect it as much as possible) by uploading the ...
-1
votes
1answer
61 views

How to pack archive to executable .exe file?

I wrote a program in Python with GUI based on Tkinter and convert them to standalone windows program using Py2Exe, and now i have a big folder with help files and one .exe file. Do you know any ...
1
vote
1answer
72 views

Can't open python.exe in Windows Powershell

I've had my python program removed from windows a while ago, and recently downloaded python2.7.4 from the main site, but when I type "python" in the Windows PowerShell(x86) prompt from C:, I get the ...
0
votes
0answers
77 views

Why will .exe created with cx_freeze not run? It tells me: python33.dll is not found

I have successfully frozen my Python 3.3 application using cx_Freeze into an .exe and it runs fine until I move the enclosing folder which contains image files and suchlike to another folder or try on ...
0
votes
1answer
33 views

pyinstaller OwnerError

I need to build a standalone exe which does not need python to be installed on the user's computer. I tried with nuitka, cx_freeze but they include also other files or in case with nuitka, it needs ...
0
votes
0answers
37 views

Very Weird windows service behavior when using py2exe

I coded out a windows service in python to write some text to a file continuously and installed it and ran it and it works fine. Now if I try to convert my python windows service script into an ...
0
votes
1answer
117 views

Making an .exe for pygame with cx-freeze

I've created a game in Python 3.2 and tried to turn it into a .exe with cx-freeze but when I try to run the .exe, I get an error. The Game import pygame, sys, random from pygame.locals import * ...
0
votes
0answers
35 views

how to: save exe with bbfreeze

I've had one course of computer science so far and now I'm playing around with some of the GUI's I've made. I wan't to save my exam-GUI as an .exe/application that can run without python installed. I ...
1
vote
1answer
106 views

Making a standalone .exe file of a python script

I have a python script which contains: tempBook = temp.Workbooks.Open("c:\users\CNAME\desktop\Template.xlsx") Everything works fine but when I create a .exe of my script the Template.xlsx is not ...
1
vote
2answers
219 views

pack a software in Python using py2exe with 'libiomp5md.dll' not found

I have Python 2.7 on Window 7 OS. I wish to pack my project.py in an Executable using py2exe. Following the instruction i wrote a setup.py file from distutils.core import setup import py2exe ...
0
votes
0answers
37 views

How to compile a python program with a resource file

I'e created a python program using python card's resource editor, I'm trying to use cxfreeze to convert .pyw to .exe but i get the following error when trying to run the .exe file, no resource file ...
3
votes
4answers
115 views

py2exe dificulties [duplicate]

py2exe dificulties With some usefull answers (Thanks!) of my previous question (See below), I decided to give py2exe another try. I tried the tutorial from py2exe.org ...
0
votes
2answers
77 views

Easiest way to create stand alone application from python script

I am a bit of a noob in this department, so I was wondering what is the easiest way (i.e. least amount of time and effort) to create a stand alone application from a python script.
0
votes
2answers
282 views

Run a .exe file serverside by a CGI python script

I have a html file with one button. When the button is clicked, a javascript function "run" is called: function run() { window.open("http://localhost/cgi-bin/run.py", "_self"); } ...
0
votes
2answers
135 views

PyInstaller what are hiddenimports and hooks?

I recently tried pyInstaller and there are some things i don't quite get. i have been trying to create some executables (NOTE: all of them use numpy, scipy, OpenCV, BLAS etc) but i have been failing. ...
0
votes
1answer
157 views

Program is too big to fit in memory Pyinstaller

I have decided to try PyInstaller, and after compiling small executable I have tried to run it on windows 7 and got 'Program too big to fit in memory' I have compiled in Ubuntu using: python ...
1
vote
2answers
196 views

pyInstaller: Import Error

I'm in Windows, using pyInstaller to package an python file. But something error occurred: Traceback (most recent call last): File "<string>", line 2, in <module> File "D:\Useful ...
0
votes
1answer
74 views

cx_Freeze python exe conversion no modual named “re”

I am trying to convert a python script into an exe using cx_Freeze, but after converting it and trying to run it, it comes up with the erre "no modual named "re"". Im not sure what that is, but I dont ...
-3
votes
2answers
240 views

In Python Tkinter can I press a button to run any exe file?

I have been studying on using Tkinter to open exe files from the one Tkinter software. My end product was a Windows 7 exe file that ran all the exe files from the one Tkinter software that was ...
1
vote
1answer
68 views

Py2exe (Python Pygame) - Is there not an easier way?

I just checked the wiki and realized you need to input a tonne of code to change a python file containing pygame code to an exe. Is there not an easier way? Shouldn't it just be an exe file that you ...
0
votes
0answers
242 views

How do I create an all in one exe file from cx_freeze (or installer) from python 3.3

I have made a GUI python script that I would like to share with my coworkers to improve productivity. I need a way to include everything in one file/directory for them to use. I tried the standard ...
0
votes
0answers
34 views

pygame2exe .exe file doesn't run

I created a .exe file using py2exe for my .py program. When I try to run it, I get this error: C:\Colossus\dist\Colossus.exe\zipextimporter.py:82: RuntimeWarning: import display: No module named ...
0
votes
2answers
70 views

is it possible to run compiled iron python scripts on PCs without iron python installed?

I'm using the pyc tool to compile IronPython scripts to executables, but can they be run without IronPython installed? If so what do I have to include?
0
votes
3answers
107 views

get error while I call .exe file from my python script

Hi all i use wxpython for GUI and bash for script, i have to run exe file from python script i used subprocess. purpose is: have to pass parameter from GUI to *.exe file. and dont have permission to ...
0
votes
0answers
31 views

Python code that imports libs into exe file

I wrote a code that imports some libs(win32api, win32console, win32gui, pythoncom, pyHook, smtplib, time) How can I create a file that if I'll run it on another computer it could use this libs? The ...
0
votes
0answers
35 views

cx_Freeze IOError in .exe

I'm trying to get a working .exe of my simple python script called test.py. The script works fine, it parses an .ods file and extract some data. The file I parse is called Spreadsheet.ods and it is ...
0
votes
1answer
138 views

Pyinstaller onefile doesn't find data files

I too am trying for the first time to build a simple --onefile exe which includes data files, but Pyinstaller doesn't seem to find them when building the .exe. A --onedir build seems to work fine. ...
1
vote
1answer
123 views

When using Pyinstaller 2.0 syntax error in pyinstaller-2.0/PyInstaller/lib/macholib/util.py

I have just installed PyInstaller 2.0 and I have been attempting to use it to create an executable of a python script. However, from terminal, when I cd into the directory pyinstaller-2.0 and run the ...
0
votes
2answers
85 views

Is it a good idea to protect a exe file using os.path.exists?

Is it a good idea to use: import os.path os.path.exists (file_path) to "protect" a program against copies? For example, in our main application we use import os.path os.path.exists ...
0
votes
1answer
96 views

Python - Stray cmd.exe window causes program to hang. How can I close this stray program?

I have a Python file which starts a new process via Popen. The Python codes should wait until this new process is complete before resuming it's code. However, the process Python starts also spawns ...
1
vote
1answer
245 views

python, unable to make executable from script when I use scipy

I have a python application and I want to extract the executable. I have used py2exe with no problem in other scripts. But in this one I get errors that I think have to do with the fact that I import ...
0
votes
0answers
110 views

Py2exe: glib.GError: Failed to open file from Glade

I'm trying to convert my BVF file into an .exe format, but I keep getting a consistent error in the log and keeping me unable to start the program from the .exe. Here's the entire error: Traceback ...
1
vote
3answers
192 views

Convert an exe and it's dependant file into one stand-alone exe

I'm using cx_Freeze to compile python programs into executables and it works just fine, but the problem is that is doesn't compile the .py scripts into one exe, it converts them into a .exe file AND a ...
1
vote
5answers
88 views

Making a Program that makes .exe's

I am using Python 2.7 I am looking for the best way to make an .exe with my program. My program is a application development tool that generates a .py file. What is the best way to convert this .py ...
0
votes
0answers
187 views

Python cx-freeze ubuntu 12.04 .exe

I would like create windows exe file in ubuntu 12.04 from python script. apt-get install cx-freeze cd /home/daniel/.app/ ls app.py How to create windows xp, vista, 7 run the app.py script? This is ...
0
votes
2answers
164 views

Creating wxPython GUI .exe?

I've been trying for over a week now to make a .exe of a wxPython script. I still have a number of questions, and the process of creating an exe is still quite unclear. Which utility should be used? ...
1
vote
1answer
80 views

Building a string of Python Code in PyInstaller?

I understand how we can package an .exe by pointing PyInstaller to a file. Such like: c:\Python25\python c:\Users\Mike\Desktop\pyinstaller-1.4\Makespec.py -F -w sampleApp.py However is there a way ...
1
vote
3answers
260 views

wxPython to exe with PyInstaller?

I'm trying to get a wxPython app working as an exe. I've heard that PyInstaller is now superior to py2exe. I'd like to include my .ico and two .png files that the script requires to run. What would ...
0
votes
1answer
110 views

How to call specific EXE function on Linux/Mac

I'm sure if it's possible, but I'd like to call the function which is defined in the exe file on Linux/Mac: 0x421ff0 @@my_func_doing_stuff@Initialize 4 Basically I'd like to add command line ...
-1
votes
2answers
154 views

Python 3.2.2 Script into an EXE file

Is there an easy and effective way to make a python 3.2.2 script into an executable file? if so, how? I have tried CX_Freeze but the exe file didn't run. Please let me know if there is another way.
0
votes
2answers
528 views

After creating python exe file with cx_freeze the file doesn't do anything

I recently created used cx_freeze to create a python 3.2.2 exe file. When I tried to run the exe file nothing happened. Here is the code for my test.py file: print("hello world") for i in ...
0
votes
2answers
99 views

Python app which reads and writes into its current working directory as a .app/exe

I have a python script which reads a text file in it's current working directory called "data.txt" then converts the data inside of it into a json format for another separate program to handle. The ...
9
votes
2answers
174 views

python script to windows exe

seeing as all the posts I find are up to 6 years ago, I'll reask the question. What is nowadays the common way to create an exe from a python script? If I'm right py2exe hasn't been updated since ...
2
votes
2answers
233 views

Does PY2EXE Compile a Python Code to run Faster?

I really like the PY2EXE module, it really helps me share scripts with other co-workers that are super easy for them to use. My question is: when the PY2EXE module compiles the code into an ...
2
votes
1answer
182 views

using wsgi script to call exe

I'm running apache, Django and wsgi. I also use this other software called SAS to do statistical analysis. Just to give you some context. My end goal is when a client hits submit on a form written ...
3
votes
1answer
1k views

How to convert python .py file into an executable file for use cross platform?

I've been searching through SO for a while now trying to come up with an answer to this but due to my inexperience with programming I don't understand much of the documentation, nor am I confident ...

1 2