You cannot post messages because only members can post, and you are not currently a member.
Description:
This list is aim to serve as a communication channel among those interested in the further development of PyInstaller.
PyInstaller is a program that packages Python programs into stand-alone executables.
|
|
|
Problem sing NumPy and SciPy with PyInstaller
|
| |
I too have a program that imports numpy and scipy. When I try to use
PyInstaller, I get the following error:
File "<string>", line 21, in <module>
NameError: name 'io' is not defined
The code up to line 21 is (line numbers differ because of comments):
from numpy import *
from numpy import random... more »
|
|
problem with different versions of linux
|
| |
Does anybody have any other solutions to this problem? This solution does not work for me. It may be that my problem is similar--the program runs on some linux systems, but not on others--but not completely. The message I get is similar but slightly different. I get the message when my program is package into one file, but... more »
|
|
runtime error
|
| |
My program builds fine, but then when I go to run it I get: File "<string>", line 2 ^ SyntaxError: invalid syntax Has anyone else had this problem. The program runs fine before it is packaged. Also, the Windows version of my program runs fine. It is just with the linux version that I have problems.... more »
|
|
Supporting pkg_resource using Eggs
|
| |
Hi All,
I don't know if anyone on the dev team happened to notice my post
regarding OpenGL support.
[link]
Basically I've got a hack that lets PyInstaller support eggs that
require pkg_resources plugins. Not really knowing PyInstaller enough... more »
|
|
Suppressing console messages
|
| |
Hi,
I'm just getting started with PyInstaller. Works great but my
application has a simple console interface that normally kicks of a
PyQt GUI but can also do some CLI operations and has some options like
--help and --version. If I do the PyInstaller build with --console my
applications console print messages are mixed in with a lot of... more »
|
|
OpenGL support
|
| |
Hello everyone,
I'm new to Pyinstaller and I'm considering using it in my projects. I
would like to ask for your support in taking a decision on this.
I'm especially interested in deploying applications based on PyOpenGl.
I've tried to use Pyinstaller in a toy project, and I could not get it... more »
|
|
cx_oracle
|
| |
Anyone had luck with cx_Oracle?
I'm getting the error "Unable to acquire Oracle environment handle"
with both --onefile and --onedir on Pyinstaller 1.3. I'm using
instanctclient 10.2 and it works fine before freezing. I peeked in
the dist directory for -onedir and it copied oci.dll.
Most of what I've found by googling is about setting environment... more »
|
|
|