PyInstaller is a multi-platform tool designed to convert Python (.py) files into stand-alone executable files in Windows, Linux, and Mac OS X, Solaris, and AIX.

learn more… | top users | synonyms

0
votes
1answer
10 views

How to install the Pyinstaller on Win 7

I am using win7 to install the PyInstaller. I have tried the method accroding to (How to install PyInstaller? )but I failed and there is the log,is there anything wrong? ...
0
votes
1answer
15 views

PyInstaller: drag-and-drop files to the --onefile exe

I finally got the PyInstaller up and running. So far it looks good, I'm able to create a single exe that does some calculations on the files in the directory where the exe is located. So I just copy ...
0
votes
1answer
43 views

pygst + pyinstaller under OSX

I'm currently trying to bundle this dead simple python script (player.py): #!/usr/bin/env python import sys, os import gobject, glib import pygst pygst.require("0.10") import gst class ...
0
votes
0answers
17 views

Program crash on navigation tool bar click - matplotlib - python

I have created a user interface based on the integration of pyqt and matplotlib. I have create a standalone .exe using pyinstaller 2.0 (using the command line in accordance to the program ...
2
votes
1answer
33 views

How to call a process from an .exe file

I have a program called test.exe. The program was written in python/pyqt4. At some point along the code I want to trigger a restart of the application so I need to create a detached process which runs ...
0
votes
1answer
36 views

PyInstaller with multiple python files

I would like to make a program x.py into an executable(.exe) with Pyinstaller. I am able to do this just fine when x.py does not depend on any user scripts with: python pyinstaller.py -w x.py How ...
1
vote
0answers
43 views

Trying to create Mac OS X app from pygame hello world

I am trying to get the following "Hello world" pygame app to generate a Mac OS X (10.8) app using pyinstaller: import pygame, sys import pygame._view from pygame.locals import * pygame.init() # set ...
0
votes
1answer
31 views

Is is possible to use pyinstaller to build the exe with my own icon?

I am using pyinstaller 2.0 and python 2.7 to build a onedir exe from my pyqt application. Everything works well... the exe runs and shows the specified icon in the progam bar, but the icon shown for ...
0
votes
0answers
27 views

PyInstaller: using data files and subprocess

I have successfully bundled several of my python scripts into exe files using pyinstaller. However, I have hit a problem with a different python script that uses local data files. Using this question ...
0
votes
0answers
38 views

PyInstaller created exc. does not run on virtualbox with ubuntu

I used PyInstaller to create an executable from a GUI script I wrote (using wx.python) using this command... python /home/torosean/pyinstaller/pyinstaller.py -F -w My_GUI_login_simplified.py I ...
0
votes
1answer
18 views

Running binary WSGI app

I have a working wsgi app developed in python. I know that pyinstaller will compile and get me a binary of this application. I have a nginx and uwsgi running. can i use this binary instead of the ...
0
votes
1answer
50 views

pyinstaller how to create 64 bit exe on 64 bit window without ImportError: DLL load failed: %1 is not a valid Win32 application

I am trying to create 64 bit exe for 64 bit window 8 using pyinstaller. I have used 64 bit python2.7 and pyqt4, numpy-mkl, scipy, scikit, matplotlib, pywin32, MS visual C++ 2008 all are 64 bit ...
0
votes
2answers
38 views

Include PyQt in an installer

I created a python module which uses PyQt. I would my application to automatically install PyQt on the computer if it is not already there. I also want my module to become an executable - cross ...
0
votes
0answers
29 views

Pyinstaller with ubuntu raring errors

I have upgraded my ubuntu distribution and have since regretted it. I have been trying to get pyinstaller to package one of my applications but nothing seems to be working. I always get this traceback ...
1
vote
1answer
42 views

PyInstaller can't find data file

I have created a .spec file for my project, and PyInstaller runs without a hitch. However, on running the .exe, my loader hiccups with the following: Traceback (most recent call last): File ...
0
votes
0answers
13 views

python.net can't find some classes when packaged with pyinstaller

So, the issue I'm running into is in combining pyinstaller with pythonnet. I'll describe my current situation. Hopefully it isn't too long and you have some insight. I have a little bit of UI put ...
0
votes
0answers
23 views

How to create a .app from output files of pyinstaller?

I have used pyinstaller to create an executable from python scripts on os_x. It creates a dist folder with the executable and its dependencies etc. Some of the files are shown in the image below: ...
0
votes
1answer
27 views

pyinstaller 2.0 with pyqtgraph returns 6223 error invalid syntax

I have been struggling to figure out why my program is not packaging with pyinstaller. I have found the same error when I import pyqtgraph (http://www.pyqtgraph.org/). It uses pyopengl, so im not ...
0
votes
0answers
72 views

Using pyinstaller to try and make a standalone exe to produce a tkinter window, but the generated exe isn't making any window; what am I missing?

Good evening, noble experts. I'm likely going to betray some of my ignorance again! I've written a python script that creates a window in tkinter, and works the way I'd like it to so far as I can ...
0
votes
2answers
56 views

PyInstaller cannot find win32 API

I am trying to run pyinstaller, but I keep getting this: Error: PyInstaller for Python 2.6+ on Windows needs pywin32. Please install from http://sourceforge.net/projects/pywin32/ I have verified ...
0
votes
0answers
38 views

error in creating executable for python script

I have created a application using python2.7 also used pyqt for gui. I have also used pybel module for computations. my application python file works properly. but when I try to create executable ...
0
votes
1answer
38 views

wxPython binary created in pyinstaller creates ugly output on Fedora/RHEL

I have searched far and wide for two weeks trying to solve my issue and nothing has done much good, so I'm at the end of my string here! I created a custom printer-selection app for my workplace in ...
0
votes
1answer
114 views

pyinstaller 2.0 - How to add descriptions for a windows exe file?

How can I add descriptions like version, copyright, file description etc. to a single file (exe) python pyinstaller.py -F -w -i favicon.ico C:\Projekte\Eclipse\MyApp\app.pyw
1
vote
1answer
39 views

Where pyinstaller path must be

I'm on Windows and my python path is C:\Python27. when I unpacked the archive I found the file pyinstaller-2.0 Where that file path must be ??
1
vote
1answer
135 views

How to include icons in application when using Pyinstaller 2.0 ,PySide 1.1.2 Bindings and Qt 4.8

what script looks like what working app should look like Before posting I have looked at the following question and tried to use it as a guide to make my script work properly but it was of ...
0
votes
2answers
150 views

Creating an OSX PyQt app using Pyinstaller 2, PyQt4 and Qt5

I am trying to package a PyQt program for OSX using PyInstaller 2, where PyQt4 (4.10) has been built against Qt 5.0.2 (from Git). The following simple example doesn't work. import sys from ...
0
votes
1answer
37 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
2answers
84 views

Default file ending in Mac, Linux and Windows to run executable in the shell/terminal

I created executables of a python script (via pyinstaller) for Mac, Windows and Linux. For Linux and Mac, I am running them in the shell since it doesn't have an own interface: just open a shell and ...
0
votes
2answers
151 views

Binaries I created with pyinstaller are incompatible with linux

I used the recent version pyinstaller with the option --onefile to create one stand alone file of my python script. On my Mac it works just fine if I open the file in the terminal (bash shell), but in ...
1
vote
0answers
55 views

compile twisted in pyInstaller

I'm currently looking into pyInstaller. I've been using py2exe for now but it would be nice if I'm only using one compiler for all platforms we target. My py2exe setup.py looks like this: from ...
1
vote
1answer
111 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 ...
0
votes
1answer
109 views

Python pyinstaller loading files after exe creation

I am running 2.7 and i am using pyinstaller. My goal is to output a exe and also have it run my other class file. I am also using https://code.google.com/p/dragonfly/ as a framework for voice ...
1
vote
1answer
58 views

pyqt application needs to run with administrator rights

I have a pyqt application which needs to run with admin rights since it creates some network connections. I have it packaged and working but my users (I bet) will forget to right-click and "Run as ...
-3
votes
1answer
100 views

Global name tkinter not found using pyinstaller [closed]

I tried looking for an answer and couldn't find anything that worked. I made a simple program that I want to make a self contained exe. I used tkinter. The makespec I use the -K option. When I build ...
0
votes
1answer
71 views

pyinstaller cant find goose file path

Question Why will Pyinstaller not work with goose files? Is it an issue with the executable creator or my code? Code from goose.Goose import Goose url = ...
1
vote
1answer
111 views

Python/SciPy - Creating an executable

I have a short python-script that uses SciPy, which runs perfect, but i have trouble converting it into an executable. I use Windows 7 64bit and Python 2.7, with the Numpy/SciPy Version from Christoph ...
0
votes
1answer
38 views

pyinstaller program not working if built without console

I have a small app that I'm trying to build against windows machines. The program creates an OpenVPN connection. If I build the program and run it it first opens a console as the program output. If I ...
0
votes
0answers
50 views

Pyinstaller executable does not work with guessit module

I Used pyinstaller 2.0 to create an executable for this small piece of code. However, when I run the executable, I get the following error: Traceback (most recent call last): File "<string>", ...
0
votes
1answer
52 views

PyInstaller Created App WIll Launch from cmd but not from explorer

I am having some problems with a app we are making with wxWidget/wxPython and PyInstaller. We have compiled the app into a single exe for windows but: 1) On some machines it will not launch at all. ...
0
votes
1answer
69 views

How to build single binary from few python files

I have few simple scripts in a single folder. Something like this: prject_root/moduleA.py prject_root/moduleB.py prject_root/moduleC.py prject_root/moduleD.py prject_root/config.py prject_root/run.py ...
1
vote
0answers
102 views

PyInstaller and Enthought Suite

I was wondering if anyone has any success in creating a stand alone executable using pyinstaller with a script that has enthought imports. I have been trying to do this for a couple of days now, ...
0
votes
2answers
146 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
163 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
212 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 ...
1
vote
1answer
129 views

basic pyinstaller on MacOS X

I am trying to get pyinstaller to work with a python script of mine which fails. So I tried a very basic script: #!/usr/bin/env python from matplotlib.pyplot import * from numpy import * ...
1
vote
0answers
64 views

Pyinstaller and guidata

I am having problems with pyinstaller and guidata. My script form.py is the basic example of http://pythonhosted.org/guidata/examples.html Then I create the form.exe: python pyinstaller.py -F ...
0
votes
1answer
78 views

Using Pymunk with Pyinstaller

I have literally found nothing googling that could help. Even for py2exe but I would like to use pyinstaller. My problem is the module (pymunk[aka Chipmunk]) is not fully included in the exe build. ...
0
votes
0answers
98 views

PyInstaller: PyQt4 module not found

Hi everyone and thanks for reading. I'm packaging my python code in a single file using pyinstaller, but when I run my packaged file I get the following error: Traceback (most recent call last): File ...
1
vote
1answer
130 views

Packaging with pyinstaller: PyQt4 module not found

Hi everyone and thanks for reading. I'm packaging my python code in a single file using pyinstaller, but when I run my packaged file I get the following error: Traceback (most recent call last): File ...
2
votes
1answer
141 views

Including python modules for PyInstaller?

In one of my first attempts to package my python code into a .exe file, I experience issues with packaging and running code using the scipy.weave module. When I check my warnproject.txt, I see 1324 ...

1 2 3 4 5