Re: PyInstaller value error: Invalid Windows resource specifier

2023-10-30 Thread MRAB via Python-list
On 2023-10-30 19:19, McDermott Family via Python-list wrote: Hello, I am trying to create a one file executable with pyinstaller 6.1.0 and auto-py-to-exe 2.41.0 using Python version 3.10.9 in a virtual environment. Some points before the output of pinstaller is shown. My resource .py file is the

Re: pyinstaller is not a internal or external command

2022-04-05 Thread Dennis Lee Bieber
On Mon, 4 Apr 2022 15:28:22 -0400, Andrew Pierson declaimed the following: > I ran pip install pyinstaller fine but after then I type in pyinstaller > and it says pyinstaller is not a internal or external command > Per the documentation https://pyinstaller.readthedocs.io/en/stable/in

Re: pyinstaller is not a internal or external command

2022-04-04 Thread MRAB
On 2022-04-04 20:28, Andrew Pierson wrote: I ran pip install pyinstaller fine but after then I type in pyinstaller and it says pyinstaller is not a internal or external command Have you tried using the Python launcher? py pyinstaller ... -- https://mail.python.org/mailman/listinfo/pytho

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Benjamin Schollnick
>> Windows Defender has a setting to also use “Reputation Scoring”. >> What that simply means is that WDef will report back a hash to microsoft >> which is then checked to see if it is known. If it is known, then it has a >> reputation and based off that reputation Defender will either allow it

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Mats Wichmann
On 11/29/21 12:04, Benjamin Schollnick wrote: Windows Defender has a setting to also use “Reputation Scoring”. What that simply means is that WDef will report back a hash to microsoft which is then checked to see if it is known. If it is known, then it has a reputation and based off that repu

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Benjamin Schollnick
Windows Defender has a setting to also use “Reputation Scoring”. What that simply means is that WDef will report back a hash to microsoft which is then checked to see if it is known. If it is known, then it has a reputation and based off that reputation Defender will either allow it to run or

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Barry
> On 29 Nov 2021, at 00:03, anthony.flury via Python-list > wrote: > >  > On 26/11/2021 07:13, Ulli Horlacher wrote >>> But consider another possibility that your compiler software is compromised >> Then https://www.python.org/ftp/python/3.10.0/python-3.10.0-amd64.exe >> is infected. I doubt

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Ulli Horlacher
anthony.flury wrote: > > On 26/11/2021 07:13, Ulli Horlacher wrote > >> But consider another possibility that your compiler software is compromised > > Then https://www.python.org/ftp/python/3.10.0/python-3.10.0-amd64.exe > > is infected. I doubt this. > > But you aren't using python3.10 to 'com

Re: pyinstaller wrong classified as Windows virus

2021-11-28 Thread anthony.flury via Python-list
On 26/11/2021 07:13, Ulli Horlacher wrote But consider another possibility that your compiler software is compromised Then https://www.python.org/ftp/python/3.10.0/python-3.10.0-amd64.exe is infected. I doubt this. But you aren't using python3.10 to 'compile' the code to the executable that

Re: pyinstaller wrong classified as Windows virus

2021-11-28 Thread anthony.flury via Python-list
Have you tried using Nuitka - rather than pyInstalller - it means you distribute a single executable and the Python run time library (which they probably have already), and it has the advantage that it is a bit quicker than standard python. Rather than bundle the source code and interpreter in

Re: pyinstaller wrong classified as Windows virus

2021-11-28 Thread Tony Flury via Python-list
Have you tried using Nuitka - rather than pyInstalller - it means you distribute a single executable and the Python run time library (which they probably have already), and it has the advantage that it is a bit quicker than standard python. Rather than bundle the source code and interpreter in

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Chris Angelico
On Sat, Nov 27, 2021 at 4:47 PM Ulli Horlacher wrote: > > Richard Damon wrote: > > > On a somewhat locked down computer, the user does not have admin rights, > > so needs to get 'IT' to run any installers that need admin permissions > > to run. > > > > And EXE that just needs to be copied to the

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Peter Heitzer
Ulli Horlacher wrote: >Edmondo Giovannozzi wrote: >> You can try to download winpython: >> https://github.com/winpython/winpython/releases >> It is an executable, but you don't need to execute it as it is a 7zip >> compressed archive. >> You may run it or use directly 7zip to decompress it, th

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Edmondo Giovannozzi
Il giorno venerdì 26 novembre 2021 alle 08:13:50 UTC+1 Ulli Horlacher ha scritto: > Avi Gross wrote: > > > I am not sure what your real problem is, Ulli, but many antivirus programs > > can be TEMPORARILY shut off. > Meanwhile I found this configuration option. > But this does not help me muc

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Ulli Horlacher
Edmondo Giovannozzi wrote: > You can try to download winpython: > https://github.com/winpython/winpython/releases > It is an executable, but you don't need to execute it as it is a 7zip > compressed archive. > You may run it or use directly 7zip to decompress it, the result will be the > same.

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Ulli Horlacher
Avi Gross wrote: > I am not sure what your real problem is, Ulli, but many antivirus programs > can be TEMPORARILY shut off. Meanwhile I found this configuration option. But this does not help me much, because my programs must run on other Windows PCs of other users and they cannot disable the d

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Ulli Horlacher
Richard Damon wrote: > On a somewhat locked down computer, the user does not have admin rights, > so needs to get 'IT' to run any installers that need admin permissions > to run. > > And EXE that just needs to be copied to the computer and rhen just RUN, > doesn't need IT to 'install' it (the

RE: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Avi Gross via Python-list
something else entirely. -Original Message- From: Python-list On Behalf Of Ulli Horlacher Sent: Thursday, November 25, 2021 12:10 PM To: python-list@python.org Subject: Re: pyinstaller wrong classified as Windows virus Chris Angelico wrote: > Unfortunately, if you're not going

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Chris Angelico
On Fri, Nov 26, 2021 at 7:53 AM Mats Wichmann wrote: > > On 11/25/21 11:00, Chris Angelico wrote: > > > Can someone confirm that it's still possible to run the Python > > installer without admin rights, for a per-user installation? It always > > used to be possible, but I haven't checked. > > You

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Mats Wichmann
On 11/25/21 11:00, Chris Angelico wrote: Can someone confirm that it's still possible to run the Python installer without admin rights, for a per-user installation? It always used to be possible, but I haven't checked. You only need admin rights for some special cases. While Win7 was still s

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Michael Torrie
On 11/25/21 9:08 AM, Ulli Horlacher wrote: > I cannot submit my executables, because the Windows Virus scannners > deletes them as soon as I compile my program! I forgot to post this link: https://support.microsoft.com/en-us/windows/add-an-exclusion-to-windows-security-811816c0-4dfd-af4a-47e4-c30

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Michael Torrie
On 11/25/21 9:08 AM, Ulli Horlacher wrote: > I cannot submit my executables, because the Windows Virus scannners > deletes them as soon as I compile my program! Add an exclusion rule to your machine. While this is not an option for your end users, this will certainly allow you to work on the probl

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Chris Angelico
On Fri, Nov 26, 2021 at 4:50 AM Richard Damon wrote: > > On 11/25/21 12:21 PM, Chris Angelico wrote: > > On Fri, Nov 26, 2021 at 4:18 AM Ulli Horlacher > > wrote: > >> Chris Angelico wrote: > >> > >>> Unfortunately, if you're not going to go to the effort of getting your > >>> executables signed

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Richard Damon
On 11/25/21 12:21 PM, Chris Angelico wrote: On Fri, Nov 26, 2021 at 4:18 AM Ulli Horlacher wrote: Chris Angelico wrote: Unfortunately, if you're not going to go to the effort of getting your executables signed I cannot sign my executables (how can I do it anyway?), because Windows deletes m

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Barry
> On 25 Nov 2021, at 16:51, Ulli Horlacher > wrote: > > Barry Scott wrote: >> >> On 25 Nov 2021, at 09:20, Ulli Horlacher wrote: >>> >>> When I compile my programs with pyinstaller, Windows classifies them as >>> virus and even deletes them! >> >> Microsoft will fix the malwa

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Chris Angelico
On Fri, Nov 26, 2021 at 4:18 AM Ulli Horlacher wrote: > > Chris Angelico wrote: > > > Unfortunately, if you're not going to go to the effort of getting your > > executables signed > > I cannot sign my executables (how can I do it anyway?), because Windows > deletes my executable as soon as I have

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Ulli Horlacher
Chris Angelico wrote: > Unfortunately, if you're not going to go to the effort of getting your > executables signed I cannot sign my executables (how can I do it anyway?), because Windows deletes my executable as soon as I have compiled them! They exist only for a few seconds and then they are g

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Chris Angelico
On Fri, Nov 26, 2021 at 3:49 AM Ulli Horlacher wrote: > > Ulli Horlacher wrote: > > Dan Purgert wrote: > > > > > > When I compile my programs with pyinstaller, Windows classifies them as > > > > virus and even deletes them! > > > > [...] > > > > > > Have you tried compiling from a different mach

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Ulli Horlacher
Barry Scott wrote: > > > > On 25 Nov 2021, at 09:20, Ulli Horlacher > > wrote: > > > > When I compile my programs with pyinstaller, Windows classifies them as > > virus and even deletes them! > > Microsoft will fix the malware detection if you provide the info they need. > > Submit false po

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Ulli Horlacher
Ulli Horlacher wrote: > Dan Purgert wrote: > > > > When I compile my programs with pyinstaller, Windows classifies them as > > > virus and even deletes them! > > > [...] > > > > Have you tried compiling from a different machine? Maybe there's > > something broken on the one that's flagging them

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Michael Torrie
On 11/25/21 2:20 AM, Ulli Horlacher wrote: > When I compile my programs with pyinstaller, Windows classifies them as > virus and even deletes them! > > pyinstaller.exe --onefile --noconsole -i fex.ico fextasy.py > 187 INFO: PyInstaller: 4.7 > 187 INFO: Python: 3.10.0 > 218 INFO: Platform: Windows-

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Barry Scott
> On 25 Nov 2021, at 09:20, Ulli Horlacher > wrote: > > When I compile my programs with pyinstaller, Windows classifies them as > virus and even deletes them! Microsoft will fix the malware detection if you provide the info they need. Submit false positive info to: https://www.microsoft.co

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Dan Purgert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Ulli Horlacher wrote: > When I compile my programs with pyinstaller, Windows classifies them as > virus and even deletes them! > [...] > What can I do? Stop writing viruses ;) Have you tried compiling from a different machine? Maybe there's somethi

Re: pyinstaller wrong classified as Windows virus

2021-11-25 Thread Ulli Horlacher
Dan Purgert wrote: > > When I compile my programs with pyinstaller, Windows classifies them as > > virus and even deletes them! > > [...] > > Have you tried compiling from a different machine? Maybe there's > something broken on the one that's flagging them. I have only this Windows installati

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Ulli Horlacher
Calvin Spealman wrote: > What version of Windows is this on? That's probably going to be a useful > bit of information, because there could be differences there to how EXE > icons are handled. > > On Tue, Nov 23, 2021 at 4:18 PM Ulli Horlacher < > frams...@rus.uni-stuttgart.de> wrote: > > > When

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread nospam_2021
Am 23.11.21 um 21:44 schrieb Ulli Horlacher: > When I compile a python program with pyinstaller, I get an executable: > > pyinstaller --onefile --icon fex.ico fextasy.py > > But the executables icon is only visable within the windows file browser, > not on the desktop: > > https://fex.flupp.org

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Calvin Spealman
What version of Windows is this on? That's probably going to be a useful bit of information, because there could be differences there to how EXE icons are handled. On Tue, Nov 23, 2021 at 4:18 PM Ulli Horlacher < frams...@rus.uni-stuttgart.de> wrote: > When I compile a python program with pyinsta

Re: pyinstaller

2020-06-12 Thread DL Neil via Python-list
On 13/06/20 3:09 AM, Robin Becker wrote: On 11/06/2020 16:39, Grant Edwards wrote: the hands of the developer.  I suppose the OP could quit and stand on the street corner with a cardboard sign: I would love to do that :) Of possible interest to folk interested in this thread: Recently came a

Re: pyinstaller

2020-06-12 Thread Robin Becker
On 11/06/2020 16:39, Grant Edwards wrote: the hands of the developer. I suppose the OP could quit and stand on the street corner with a cardboard sign: I would love to do that :) -- https://mail.python.org/mailman/listinfo/python-list

Re: pyinstaller

2020-06-11 Thread Grant Edwards
On 2020-06-11, Chris Angelico wrote: > But you DO get to choose what you support. True, for a certain value of "you". The requirement to support certains OSes and versions is often a business decision that is out of the hands of the developer. I suppose the OP could quit and stand on the stree

Re: pyinstaller

2020-06-11 Thread Chris Angelico
On Thu, Jun 11, 2020 at 7:27 PM Robin Becker wrote: > > On 11/06/2020 09:24, Chris Angelico wrote: > > > > > But you DO get to choose what you support. If they want to use Windows > > 98 on an 80386, that's their (stupid) choice, and they can't guarantee > > that your program will work on

Re: pyinstaller

2020-06-11 Thread Robin Becker
.. Submit the .exe to Microsoft so they can update the virus definitions to remove your false positive. https://www.microsoft.com/en-us/wdsi/filesubmission I did this for one of my open source projects and Microsoft fixed the false

Re: pyinstaller

2020-06-11 Thread Robin Becker
On 11/06/2020 09:24, Chris Angelico wrote: But you DO get to choose what you support. If they want to use Windows 98 on an 80386, that's their (stupid) choice, and they can't guarantee that your program will work on it. sadly this isn't really true since this is only part of the process

Re: pyinstaller

2020-06-11 Thread Barry Scott
> On 10 Jun 2020, at 14:46, Robin Becker wrote: > > I'm sure this has come up before, but a tiny pyinstaller created exe is being > seen as malware by windows 10. > > Is there any way to create simple single file applications which don't get > this treatment? Submit the .exe to Microsoft s

Re: pyinstaller

2020-06-11 Thread Chris Angelico
On Thu, Jun 11, 2020 at 6:18 PM Robin Becker wrote: > > On 10/06/2020 20:41, Chris Angelico wrote: > . > > Python can be installed from the app store, or from a python.org > > downloader. If that's too much hassle for them, then they're going to > > need help *whatever* you do. > > > works

Re: pyinstaller

2020-06-11 Thread Robin Becker
On 10/06/2020 20:41, Chris Angelico wrote: . Python can be installed from the app store, or from a python.org downloader. If that's too much hassle for them, then they're going to need help *whatever* you do. works for windows 10, but probably not on older machines. The current exe wo

Re: pyinstaller

2020-06-10 Thread Chris Angelico
On Thu, Jun 11, 2020 at 5:26 AM Robin Becker wrote: > > On 10/06/2020 15:02, Chris Angelico wrote: > > >> > >> The intended users are unlikely to understand how to adjust the scanner to > >> whitelist the application. > > > > Tell them to install Python from an official source, and then

Re: pyinstaller

2020-06-10 Thread Grant Edwards
On 2020-06-10, Robin Becker wrote: > I think we used py2exe previously and I guess that will have > the same problems as pyinstaller. Why do you guess that? -- Grant -- https://mail.python.org/mailman/listinfo/python-list

Re: pyinstaller

2020-06-10 Thread Robin Becker
On 10/06/2020 15:02, Chris Angelico wrote: The intended users are unlikely to understand how to adjust the scanner to whitelist the application. Tell them to install Python from an official source, and then distribute your application as a single .py (or .pyw) file. Problem solved.

Re: pyinstaller

2020-06-10 Thread Grant Edwards
On 2020-06-10, Souvik Dutta wrote: > You might also try py2exe, in that way the user doesn't need to > install python in her/his computer. I used to use py2exe for Windows apps, and it worked well for 2.x. A couple years ago had to switch to cx_freeze due to issues with 3.x support in py2exe (th

Re: pyinstaller

2020-06-10 Thread Mats Wichmann
On 6/10/20 8:50 AM, Calvin Spealman wrote: > On Wed, Jun 10, 2020 at 10:06 AM Chris Angelico wrote: > >> On Wed, Jun 10, 2020 at 11:49 PM Robin Becker wrote: >>> >>> I'm sure this has come up before, but a tiny pyinstaller created exe is >> being seen as malware by windows 10. >>> >>> Is there a

Re: pyinstaller

2020-06-10 Thread Robin Becker
On 10/06/2020 16:11, Souvik Dutta wrote: I found this... https://stackoverflow.com/questions/43777106/program-made-with-pyinstaller-now-seen-as-a-trojan-horse-by-avg Might be usefull, might be useless. Souvik flutter dev On Wed, Jun 10, 2020, 7:18 PM Robin Becker wrote: . thanks for the

Re: pyinstaller

2020-06-10 Thread Souvik Dutta
I found this... https://stackoverflow.com/questions/43777106/program-made-with-pyinstaller-now-seen-as-a-trojan-horse-by-avg Might be usefull, might be useless. Souvik flutter dev On Wed, Jun 10, 2020, 7:18 PM Robin Becker wrote: > I'm sure this has come up before, but a tiny pyinstaller create

Re: pyinstaller

2020-06-10 Thread Chris Angelico
On Thu, Jun 11, 2020 at 12:51 AM Calvin Spealman wrote: > > > > On Wed, Jun 10, 2020 at 10:06 AM Chris Angelico wrote: >> >> On Wed, Jun 10, 2020 at 11:49 PM Robin Becker wrote: >> > >> > I'm sure this has come up before, but a tiny pyinstaller created exe is >> > being seen as malware by windo

Re: pyinstaller

2020-06-10 Thread Calvin Spealman
On Wed, Jun 10, 2020 at 10:06 AM Chris Angelico wrote: > On Wed, Jun 10, 2020 at 11:49 PM Robin Becker wrote: > > > > I'm sure this has come up before, but a tiny pyinstaller created exe is > being seen as malware by windows 10. > > > > Is there any way to create simple single file applications

Re: pyinstaller

2020-06-10 Thread Robin Becker
On 10/06/2020 15:18, Souvik Dutta wrote: You might also try py2exe, in that way the user doesn't need to install python in her/his computer. Souvik flutter dev On Wed, Jun 10, 2020, 7:18 PM Robin Becker wrote: I'm sure this has come up before, but a tiny pyinstaller created exe is being seen

Re: pyinstaller

2020-06-10 Thread Souvik Dutta
You might also try py2exe, in that way the user doesn't need to install python in her/his computer. Souvik flutter dev On Wed, Jun 10, 2020, 7:18 PM Robin Becker wrote: > I'm sure this has come up before, but a tiny pyinstaller created exe is > being seen as malware by windows 10. > > Is there

Re: pyinstaller

2020-06-10 Thread Chris Angelico
On Wed, Jun 10, 2020 at 11:49 PM Robin Becker wrote: > > I'm sure this has come up before, but a tiny pyinstaller created exe is being > seen as malware by windows 10. > > Is there any way to create simple single file applications which don't get > this treatment? > > The intended users are unli

Re: Pyinstaller resources.DistributionNotFound 'workalendar'

2020-05-08 Thread LM FP
Hi, I followed pypi instructions: pip install workalendar, and I also have not installed any virtual python environment on my computer. El viernes, 8 de mayo de 2020, 10:51:24 (UTC+2), Souvik Dutta escribió: > Have you installed the package listed in the error in a virtual environment? > > On

Re: Pyinstaller resources.DistributionNotFound 'workalendar'

2020-05-08 Thread Souvik Dutta
Have you installed the package listed in the error in a virtual environment? On Fri, 8 May, 2020, 2:10 pm LM FP, wrote: > Hi! > I have imported workalendar package -together with others packages- to my > python script, and It works fine. I compile it with Pyinstaller without > errors, but when I

Re: pyinstaller

2020-01-15 Thread Abdur-Rahmaan Janhangeer
1) check if pyinstaller is installed correctly. type: pyinstaller if you see unrecognised command, no worry, type this instead python -m pyinstaller if you get module not found, that means pyinstaller was not installed, to install it type: python -m pip install pyinstaller 2) How to use it.

Re: PyInstaller needs Funding by your Company

2020-01-08 Thread songbird
Christian Gollwitzer wrote: > Am 07.01.20 um 15:09 schrieb Hartmut Goebel: >> Maintianing PyInstaller at a proper level requires about 4 to 5 days per >> month. Which means about 4,000 to 5,000 € per month and about 50,000 to >> 60,000 € per year. > > these numbers sound odd to me. 4000€ - 5000€ pe

Re: PyInstaller needs Funding by your Company

2020-01-07 Thread Hartmut Goebel
Am 07.01.20 um 17:19 schrieb Christian Gollwitzer: > Am 07.01.20 um 15:09 schrieb Hartmut Goebel: >> Maintianing PyInstaller at a proper level requires about 4 to 5 days per >> month. Which means about 4,000 to 5,000 € per month and about 50,000 to >> 60,000 € per year. > > these numbers sound odd

Re: PyInstaller needs Funding by your Company

2020-01-07 Thread Christian Gollwitzer
Am 07.01.20 um 15:09 schrieb Hartmut Goebel: Maintianing PyInstaller at a proper level requires about 4 to 5 days per month. Which means about 4,000 to 5,000 € per month and about 50,000 to 60,000 € per year. these numbers sound odd to me. 4000€ - 5000€ per month or equivalently 60,000€ per ye

Re: pyinstaller

2016-07-27 Thread Larry Martell
On Wed, Jul 27, 2016 at 9:12 AM, Vlastimil Brom wrote: > 2016-07-27 3:15 GMT+02:00 Larry Martell : >> On Tue, Jul 26, 2016 at 8:49 PM, Tom Brown wrote: >>> I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs >>> and see if I can help if you have not solved it already. >>> >>

Re: pyinstaller

2016-07-27 Thread Vlastimil Brom
2016-07-27 3:15 GMT+02:00 Larry Martell : > On Tue, Jul 26, 2016 at 8:49 PM, Tom Brown wrote: >> I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs >> and see if I can help if you have not solved it already. >> >> What is the issue you are having? > > If I import the request

Re: pyinstaller

2016-07-27 Thread Larry Martell
On Wed, Jul 27, 2016 at 2:23 AM, Christian Gollwitzer wrote: > Am 27.07.16 um 03:15 schrieb Larry Martell: >> >> On Tue, Jul 26, 2016 at 8:49 PM, Tom Brown wrote: >>> >>> I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs >>> and see if I can help if you have not solved it

Re: pyinstaller

2016-07-26 Thread Christian Gollwitzer
Am 27.07.16 um 03:15 schrieb Larry Martell: On Tue, Jul 26, 2016 at 8:49 PM, Tom Brown wrote: I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs and see if I can help if you have not solved it already. What is the issue you are having? If I import the requests module,

Re: pyinstaller

2016-07-26 Thread Larry Martell
On Tue, Jul 26, 2016 at 8:49 PM, Tom Brown wrote: > I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs > and see if I can help if you have not solved it already. > > What is the issue you are having? If I import the requests module, then when I run the executable I get: Im

Re: pyinstaller

2016-07-26 Thread Tom Brown
I used pyinstaller quite a bit 3 years ago. I could brush off the cobwebs and see if I can help if you have not solved it already. What is the issue you are having? -Tom On Jun 21, 2016 16:57, "Larry Martell" wrote: > Anyone here have any experience with pyinstaller? I am trying to use > it, b

Re: pyinstaller and Python 3.5 on Windows?

2015-11-19 Thread Ulli Horlacher
Ulli Horlacher wrote: > C:\Users\admin>pip install pypiwin32 > Collecting pypiwin32 > Downloading pypiwin32-219-cp35-none-win32.whl (7.9MB) > 100% || 7.9MB 61kB/s > Installing collected packages: pypiwin32 > Exception: (...) > PermissionError: [Errno 13] Perm

Re: pyinstaller and Python 3.5 on Windows?

2015-11-19 Thread Ulli Horlacher
Kevin Walzer wrote: > I understand that Python 3.5 has shipped how the MS dll's from Visual > Studio are shipped, and perhaps the freezing tools (pyinstaller, py2exe) > haven't yet caught up. Consider filing a bug with the pyinstaller > developers. http://pythonhosted.org/PyInstaller/#windows

Re: pyinstaller and Python 3.5 on Windows?

2015-11-19 Thread Kevin Walzer
On 11/18/15 5:46 PM, Ulli Horlacher wrote: ImportError: DLL load failed: The specified module could not be found. Is there a solution available? I understand that Python 3.5 has shipped how the MS dll's from Visual Studio are shipped, and perhaps the freezing tools (pyinstaller, py2exe) h

Re: pyinstaller and Python 3.5 on Windows?

2015-11-18 Thread Ulli Horlacher
Christian Gollwitzer wrote: > Am 18.11.15 um 23:46 schrieb Ulli Horlacher: > > To run my Python programs on other Windows systems without a Python > > installation I must create standalone Windows executables. > > > > pyinstaller runs without any problems with Python 2.7.10 on Windows 7, but > > w

Re: pyinstaller and Python 3.5 on Windows?

2015-11-18 Thread Christian Gollwitzer
Am 18.11.15 um 23:46 schrieb Ulli Horlacher: To run my Python programs on other Windows systems without a Python installation I must create standalone Windows executables. pyinstaller runs without any problems with Python 2.7.10 on Windows 7, but with Python 3.5 I get: [stack trace] Are you u

Re: pyinstaller and Python 3.5 on Windows?

2015-11-18 Thread Thomas 'PointedEars' Lahn
Ulli Horlacher wrote: > To run my Python programs on other Windows systems without a Python > installation I must create standalone Windows executables. > > pyinstaller runs without any problems with Python 2.7.10 on Windows 7, but > with Python 3.5 I get: > > [b0rked stack trace] > > Is there

Re: PyInstaller+ Python3.5 (h5py import error)

2015-09-25 Thread Hedieh E
On Thursday, September 24, 2015 at 1:12:31 PM UTC+2, Laura Creighton wrote: > In a message of Thu, 24 Sep 2015 02:58:35 -0700, Heli Nix writes: > >Thanks Christian, > > > >It turned out that h5py.defs was not the only hidden import that I needed to > >add. > > > >I managed to get it working with

Re: PyInstaller+ Python3.5 (h5py import error)

2015-09-24 Thread Laura Creighton
In a message of Thu, 24 Sep 2015 02:58:35 -0700, Heli Nix writes: >Thanks Christian, > >It turned out that h5py.defs was not the only hidden import that I needed to >add. > >I managed to get it working with the follwoing command adding 4 hidden >imports. > > >pyinstaller --hidden-import=h5py.d

Re: PyInstaller+ Python3.5 (h5py import error)

2015-09-24 Thread Heli Nix
Thanks Christian, It turned out that h5py.defs was not the only hidden import that I needed to add. I managed to get it working with the follwoing command adding 4 hidden imports. pyinstaller --hidden-import=h5py.defs --hidden-import=h5py.utils --hidden-import=h5py.h5ac --hidden-import=h5

Re: PyInstaller+ Python3.5 (h5py import error)

2015-09-23 Thread Christian Gollwitzer
Am 23.09.15 um 18:20 schrieb Heli Nix: Dear all, Thanks a lot for your replies. Very helpful. I have already done some trials with Virtualenv, but PyInstaller is much closer to the idea of an installer you can pass to someone. I have been using development version of PyInstaller in order to

Re: pyinstaller

2009-06-25 Thread Gabriel Genellina
En Sun, 21 Jun 2009 21:48:29 -0300, Arlie escribió: Newbie here using Python 2.6.2 on MS WinXP Pro SP3. I'm trying create an frozen exec and was able to generate and exe file. Have you tried py2exe? Imported files in myprog.py: import MySQLdb Probably using MySQLdb requires some extra wor

Re: pyinstaller

2009-06-21 Thread Arlie
Content of warnmyprog.txt: W: no module named posix (conditional import by os) W: no module named optik.__all__ (top-level import by optparse) W: no module named readline (delayed, conditional import by cmd) W: no module named readline (delayed import by pdb) W: no module named pwd (delayed, condi

Re: pyinstaller

2009-06-21 Thread Arlie
Imported files in myprog.py: import MySQLdb import os # works on Windows or Linux, also Vista import os.path import time import mp3 ~~~ Content of mp3.py: # -*- coding: utf-8 -*- #Michel Claveau import time from ctypes import windll, c_buffer class mci: def __init__(self): sel

Re: pyinstaller

2009-06-21 Thread Arlie
Renamed the project directory. from ... File "D:\PROJECTS\python.paging.system.client \buildpaging_system_client\out1.p ... to ... File "D:\PROJECTS\pyproject \buildpyproject\out1.p ... -- http://mail.python.org/mailman/listinfo/python-list

Re: pyinstaller and logging

2009-05-06 Thread Mike
On 6 Mai, 18:14, Vinay Sajip wrote: > On May 6, 2:41 pm, Mike wrote: > > > > > Pyinstaller seems to have a problem withlogging... > > >  I installed pyinstaller 1.3 - using it together with Python 2.6. I > > used pyinstaller for a small project, the created .exe worked fine. > > After some additi

Re: pyinstaller and logging

2009-05-06 Thread Vinay Sajip
On May 6, 2:41 pm, Mike wrote: > Pyinstaller seems to have a problem withlogging... > > I installed pyinstaller 1.3 - using it together with Python 2.6. I > used pyinstaller for a small project, the created .exe worked fine. > After some additional changes to my project I got strange run time > e

Re: PyInstaller: problem to build exe with PyQt4

2008-06-03 Thread Giovanni Bajo
On Tue, 03 Jun 2008 08:35:37 +0200, Mark Delon wrote: > Hi, > > I need to generate single EXEcutable via PyInstaller. It will be > genereated -> i get one single executable. > > AFTER CALL (exe) I get an error: "no module named _gt" > > Build command: > 1. Configure.py > 2. Makespec.py -F

Re: pyinstaller fails to create exe-File

2007-02-23 Thread Thomas Heller
[EMAIL PROTECTED] schrieb: > Hi ! > > I am trying to create an exe file using pyinstaller. Running the > created exe-File gives the error message > "" > Traceback (most recent call last): > File "", line 8, in > File "E:\Documents\mich\job\abs\backup_skript\buildbackup\out1.pyz/ > email", lin

Re: PyInstaller 1.0 - build single-file distributions for your Python programs

2005-09-20 Thread Giovanni Bajo
Giovanni Bajo wrote: > PyInstaller 1.0 is out: > http://pyinstaller.hpcf.upr.edu/pyinstaller For the logs, the correct URL is: http://pyinstaller.hpcf.upr.edu The other was a redirector which is no longer valid after a site maintenance session. I apologize for the inconvenience. -- Giovanni Ba