[PyInstaller] Re: pyinstaller bug

2016-01-26 Thread Igor Futritski
Posted it on github, issue #1801 Apparently mailing list worked, but with big delay - I was only able to see my post after ~10 hours. Igor On Tuesday, January 26, 2016 at 1:36:14 AM UTC-8, Hartmut Goebel wrote: > > Am 25.01.2016 um 22:09 schrieb Igor Futritski: > > > I'd like to report a bug:

[PyInstaller] pyinstaller build fails when moved between computers

2016-01-26 Thread David J Beck
I'm working on Macs running OS 10.11 and trying to build an app based on Python 3.5, Qt 5.1, and PyQt 5.1, everything installed using Homebrew package manager. I can build one-folder and bundled apps that run just fine on the computer where I have Pyinstaller, but when I move them to another Ma

Re: [PyInstaller] Cant use pyinstaller

2016-01-26 Thread marcdebourget
Hello Rafael, as described in the link above, try to add c:\python35\scripts (adjusted to you real installation path) to your Windows environment PATH variable. Best wishes, Marc -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe

Re: [PyInstaller] Cant use pyinstaller

2016-01-26 Thread marcdebourget
Hello Rafael, as described by the link above, this sounds like pyinstaller.py isn't found by the Windows environment PATH variable. If so, you should add "c:\Python35\Scripts" (adjusted to your specific "Scripts" installation path) to your PATH variable. Best wishes, Marc -- You received this

Re: [PyInstaller] PyInstaller is great!

2016-01-26 Thread Parkway
+1 and will say again that I've been using pyinstaller for a few years and it is just great and has become better. It is also obvious that a ton of effort has gone into it. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from thi

Re: [PyInstaller] Cant use pyinstaller

2016-01-26 Thread Hartmut Goebel
Am 26.01.2016 um 09:54 schrieb rafael mena: > Hello, i am trying to use pyinstaller for a simple school assignment, > but cant get it to work. Did you follow ? -- Schönen Gruß Hartmut Goebel Dipl.-Informatiker (univ), CISSP, CSSLP Info

Re: [PyInstaller] Bundle python interpreter executable

2016-01-26 Thread Hartmut Goebel
Am 13.01.2016 um 15:58 schrieb Jakob de Maeyer: > In the frozen version, the subprocess line fails since it cannot find > the 'python' executable. I see that 'python27.dll' is bundled, but > there's no 'python.exe' (I'm trying this on Windows right now but > it'll be cross-platform later, python ve

Re: [PyInstaller] PyInstaller is great!

2016-01-26 Thread Hartmut Goebel
Am 15.01.2016 um 22:48 schrieb jftuga: > I just tried out PyInstaller with Python 3.5.1 on Windows 10 and it is > fantastic. I love using the --onefile option so that I can easily > distribute binaries. I will definitely be more inclined to use even > more Python code at work now that I know I do

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-26 Thread Hartmut Goebel
Am 16.01.2016 um 19:10 schrieb Nicholas Chammas: > The specific things I’m looking to see examples of in other people’s > projects are: You may have a look at brog -backup: https://github.com/borgbackup/borg > * How do they invoke PyInstaller? If they use a |.spec| file, what > does it look

Re: [PyInstaller] Calling separate Python process

2016-01-26 Thread Hartmut Goebel
Am 19.01.2016 um 11:35 schrieb Jakob de Maeyer: > is it possible to invoke a separate Python process? Á la > > | > subprocess.call(['python','setup.py']) > | No,it is not since there is no "python" executable. -- Schönen Gruß Hartmut Goebel Dipl.-Informatiker (univ), CISSP, CSSLP Information Sec

[PyInstaller] Re: pyinstaller bug

2016-01-26 Thread Hartmut Goebel
Am 25.01.2016 um 22:09 schrieb Igor Futritski: > > I'd like to report a bug: If the mailinglist does not work, please post the bug at github -- Schönen Gruß Hartmut Goebel Dipl.-Informatiker (univ), CISSP, CSSLP Information Security Management, Security Governance, Secure Software Development

[PyInstaller] Examples of projects using PyInstaller

2016-01-26 Thread Nicholas Chammas
Howdy, I’m looking for examples of projects using PyInstaller on a regular basis to package and release their work. I’m getting ready to make my first release using PyInstaller , and as a Python newbie I think it would be instructive for me to

[PyInstaller] Calling separate Python process

2016-01-26 Thread Jakob de Maeyer
Hi everyone, is it possible to invoke a separate Python process? Á la subprocess.call(['python', 'setup.py']) but with the bootloader taking care of things. My use case is a script that downloads packages via pip, then needs to build an egg via "python setup.py bdist_egg". Thanks, -Jakob --

[PyInstaller] Bundle python interpreter executable

2016-01-26 Thread Jakob de Maeyer
Hey everyone, I have a script (that I'd like to freeze) which generates a setup.py file, then calls 'python setup.py [some args]' to build a Python egg, e.g.: # Generate setup.py here if getattr(sys, 'frozen', False): exe = sys.executable else: exe = 'python' sub

[PyInstaller] PyInstaller is great!

2016-01-26 Thread jftuga
I just tried out PyInstaller with Python 3.5.1 on Windows 10 and it is fantastic. I love using the --onefile option so that I can easily distribute binaries. I will definitely be more inclined to use even more Python code at work now that I know I don't have to do a full Python install on oth

[PyInstaller] pyinstaller ImportError: /tmp/_MEIrkqpFj/_io.so: undefined symbol: _PyLong_AsInt

2016-01-26 Thread guobb423
I can import _io module at terminal. pyinstaller is also pass, but run the app, error snapshot as below. at the sys._MEIPASS path, _io.so is also exist, i really don't know why. Anyone face it? thank you. Traceback (most recent call last): File "", line 13, in File "/opt/ute/python/lib/p

[PyInstaller] pyinstaller and pythonnet are not friends!

2016-01-26 Thread Igor Futritski
Couldn't make the simple script below to compile and run on both 32 and 64 bit systems: import clr print 'ok' 1. anaconda 64 bit 2. pythonnet 3. I can build an exe file: pyinstaller clr_min_test.py 4. If I run it, it complains about missing python.runtime.dll 5. if I copy python.runtime.dll .ex

[PyInstaller] pyinstaller bug

2016-01-26 Thread Igor Futritski
Hello Giovanni , Hartmut , I've tried to post on google groups - no luck - I do not see my posts! I'd like to report a bug: pyinstaller+pythonnet builds, but fails on execution Here is the test program: import clr print 'ok' I've tried

[PyInstaller] pyinstaller + pythonnet builds, but execution fails

2016-01-26 Thread Igor Futritski
Hello, It looks like pyinstaller and pythonnet are not "friends". My test program (file clr_min_test.py) is 2 lines only: *import clr* *print 'ok'* See messages below, where I build and then execute it. *Microsoft Windows [Version 6.1.7601]* *Copyright (c) 2009 Microsoft Corporation. All righ

[PyInstaller] Cant use pyinstaller

2016-01-26 Thread rafael mena
Hello, i am trying to use pyinstaller for a simple school assignment, but cant get it to work. This is what i have done so far: installed pip downloaded the .tar.gz file of PyInstaller ran the command: "pip install pyinstaller" and waited for install After doing that i tried to used the command