[PyInstaller] PyInstaller is not finding a wxPython dylib under OS X Anaconda

2014-12-09 Thread Tom
I am switching from py2app to PyInstaller on OS X. I have a small problem for which I have a workaround but where I’d like to figure out the right way to do things. When building with the pyinstaller command I get a handful of error statements involving one specific dylib, like this: 78640

[PyInstaller] Windows Weird Build Error

2014-12-09 Thread Beckett Simmons
Hey all, So I am trying to build a python file to a single .exe on windows. To be exact I am using: - Python2.7 - pyinstaller2.1 - Windows7 64-bit - virtualenv1.10.1 I am trying with the incantation: pyinstaller.exe --oneline matcher.py And get this output: http://paste.ubuntu.com/9371224/I

[PyInstaller] Check to see if a package exists within the executable

2014-12-09 Thread Daniel Arteaga
When running my python script before creating the executable, I can run either: distutils.spawn.find_executable('Package') or def cmd_exists(cmd): return subprocess.call(type + cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 to see if a given package

[PyInstaller] OSError: [Errno 2] from PyInstaller on OpenWrt-Yun

2014-12-09 Thread Karl Von Dyson
Hi there, I've been trying to see if I could get PyInstaller to run on OpenWRT-Yun (the Linux distro used on the Arduino Yun board). The stable version (2.1) installed ok through *pip*. But running it against a Hello World script produces this: Traceback (most recent call last): File

Re: [PyInstaller] OSError: [Errno 2] from PyInstaller on OpenWrt-Yun

2014-12-09 Thread Hartmut Goebel
Am 09.12.2014 um 15:50 schrieb Karl Von Dyson: | forline incompat.exec_command('ldd',pth).splitlines(): | Obviously your installation is missing some requirements, see http://pythonhosted.org/PyInstaller/#id2 -- Schönen Gruß Hartmut Goebel Dipl.-Informatiker (univ), CISSP, CSSLP

Re: [PyInstaller] Windows Weird Build Error

2014-12-09 Thread Hartmut Goebel
Am 08.12.2014 um 13:46 schrieb Beckett Simmons: - pyinstaller2.1 Please try the current development version. If this deos not sole the problem, pelase follow the guide at https://github.com/pyinstaller/pyinstaller/wiki/How-to-Report-Bugs#when-submitting-a-bug -- Schönen Gruß Hartmut Goebel

[PyInstaller] I think I may have something here for Python 3

2014-12-09 Thread David Cortesi
Thinking about pyinstaller and python 3 it occurred to me that it should be possible to get a complete list of what a script imports in a somewhat simpler way than pyinstaller presently does it. Below find a script that first imports a target script and then executes it. It copies sys.modules at