Re: Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-04-04 Thread Jacob Kruger via Python-list
Ok, had received response on pyinstaller mailing list, but, also just related to trying clean uninstall/reinstall of modules, but, while checking that out, something else occurred to me, and, it now operates as it should. Anyway, what seemed to be causing issue was actually that, since

Re: Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-04-03 Thread Jacob Kruger via Python-list
On 2024/04/02 17:11, Barry wrote: On 1 Apr 2024, at 15:52, Jacob Kruger via Python-list wrote: Found many, many mentions of errors, with some of the same keywords, but, no resolutions that match my exact issue at all. Try asking the pyinstaller developers. I think there is a mailing list.

Re: Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-04-02 Thread Barry via Python-list
> On 1 Apr 2024, at 15:52, Jacob Kruger via Python-list > wrote: > > Found many, many mentions of errors, with some of the same keywords, but, no > resolutions that match my exact issue at all. Try asking the pyinstaller developers. I think there is a mailing list. Barr

Re: Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-04-01 Thread Jacob Kruger via Python-list
using it on windows, and having it just stop working. Now did even try shifting over to python 3.12, but, still no-go. If launch pyinstaller under python 3.10 on this exact same machine, pyinstaller runs - just keep that older version hovering around for a couple of occasional tests, partly

Re: Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-03-31 Thread Barry via Python-list
> On 31 Mar 2024, at 13:24, Jacob Kruger via Python-list > wrote: > > pkg_resources.DistributionNotFound: The 'altgraph' distribution was not found > and is required by the application I think I have seen this error being discussed before… A web search for pyinsta

Trying to use pyinstaller under python 3.11, and, recently started receiving error message about specific module/distribution

2024-03-31 Thread Jacob Kruger via Python-list
This started happening this past week, and, while it's worked fine in the past, the moment I try to launch the pyinstaller process at all, to generate compiled output, or even if just launch it with no command line options, I receive the following error me

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

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/

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

pyinstaller is not a internal or external command

2022-04-04 Thread Andrew Pierson
I ran pip install pyinstaller fine but after then I type in pyinstaller and it says pyinstaller is not a internal or external command   Sent from [1]Mail for Windows   References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 -- https://mail.python.org

Re: For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-08 Thread Mohsen Owzar
Chris Angelico schrieb am Dienstag, 7. Dezember 2021 um 19:16:54 UTC+1: > On Wed, Dec 8, 2021 at 4:49 AM Mohsen Owzar wrote: > > *** > > GPIOContrl.py > > *** > > cla

Re: For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-07 Thread Chris Angelico
On Wed, Dec 8, 2021 at 4:49 AM Mohsen Owzar wrote: > *** > GPIOContrl.py > *** > class GPIOControl: > def my_print(self, args): > if print_allowed == 1: > print(args) > >

For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-07 Thread Mohsen Owzar
Hi all, I have a problem with "pyinstaller". When I compile a single Python file, an EXE file is created in the "dist" directory, with which I can start the program and the GUI appears after a few seconds. But when I try to compile my project with "pyinstaller Relai

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
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 >> windows complains about: you are using pyinstaller, which if memory serves >&

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Barry
64.exe >> is infected. I doubt this. > > But you aren't using python3.10 to 'compile' the code to the executable that > windows complains about: you are using pyinstaller, which if memory serves is > a 3rd party application. > > I assume that you h

Re: pyinstaller wrong classified as Windows virus

2021-11-29 Thread Ulli Horlacher
ut you aren't using python3.10 to 'compile' the code to the executable > that windows complains about: you are using pyinstaller, which if memory > serves is a 3rd party application. > > I assume that you have no problem running the script without pyinstaller ? > >

Re: pyinstaller wrong classified as Windows virus

2021-11-28 Thread anthony.flury via Python-list
the executable that windows complains about: you are using pyinstaller, which if memory serves is a 3rd party application. I assume that you have no problem running the script without pyinstaller ? so Might pyinstaller be compromised in some way ? Is

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
t;(How) can I add PySimpleGUI (*) and my program to this (self-extracting?) >package? >https://sourceforge.net/projects/winpython/files/WinPython_3.10/3.10.0.1/ >633 MB! I have a lot of users with internet speed < 200 kB/s >With pyinstaller my program executables are are

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Edmondo Giovannozzi
al software (besides Python and cygwin). > > 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. > > Is this happening to only one set of code? > This is h

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Ulli Horlacher
(self-extracting?) package? https://sourceforge.net/projects/winpython/files/WinPython_3.10/3.10.0.1/ 633 MB! I have a lot of users with internet speed < 200 kB/s With pyinstaller my program executables are are around 10 MB. (*) My programs depend on: https://pysimplegui.readthedocs.io/en/latest/ -

Re: pyinstaller wrong classified as Windows virus

2021-11-26 Thread Ulli Horlacher
s infected. I doubt this. > Is this happening to only one set of code? This is happening SOMETIMES, not always. With the SAME source code. When I call pyinstaller often enough, then the virus scanner is quiet. In about 1 of 20 compile runs. -- Ullrich Horlac

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

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! > > > > [...]

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 pro

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'

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 IN

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

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? M

pyinstaller wrong classified as Windows virus

2021-11-25 Thread Ulli Horlacher
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-10-10.0.19041-SP0 218 INFO: wrote P:\W10\fextasy.spec

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 flag

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Ulli Horlacher
us.uni-stuttgart.de> wrote: > > > 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 desk

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 d

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Calvin Spealman
n 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/fop/V2ioMZcl/X-20211123213712.png > > There is o

pyinstaller: icon not visable on desktop?

2021-11-23 Thread 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/fop/V2ioMZcl/X-20211123213712.png There is only the

Re: several issues with pyinstaller on Windows 10

2021-11-18 Thread Eryk Sun
On 11/18/21, Ulli Horlacher wrote: > > P:\W10\dist>argv a b > The process cannot access the file because it is being used by another > process. Try searching for open handles for "argv.exe" using Sysinternals Process Explorer [1]. Terminate the offending process. Since you're inexperienced with

several issues with pyinstaller on Windows 10

2021-11-18 Thread Ulli Horlacher
On Windows 10 I have installed: P:\W10>python --version Python 3.10.0 P:\W10>pyinstaller --version 4.7 I can compile a VERY simple Python program: P:\W10>type argv.pv #!/usr/bin/python3 import sys for a in sys.argv: print("["+a+"]") P:\W10>pyinstaller.exe -

[ANN] PyInstaller 4.0

2020-08-09 Thread Hartmut Goebel
Hello, on behalf of the PyInstaller development team I'm happy to announce PyInstaller 4.0. http://www.pyinstaller.org Thanks for all those who contributed questions, bug-reports or pull-requests. PyInstaller is in urgent need of funding to make future security fixes happen, see &

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

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
n is also > probably beyond their abilities :( and I think it ought to be easier for the > pyinstaller created executables to 'just work'. 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

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
. ChrisA Thanks for the obvious suggestion, but if they have difficulty whitelisting the app then installing python is also probably beyond their abilities :( and I think it ought to be easier for the pyinstaller created executables to 'just work'. The current exe works on very old v

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 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 pyi

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 pyinstalle

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 cre

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 ex

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

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

pyinstaller

2020-06-10 Thread Robin Becker
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 unlikely to understand how to adjust the scanner to whi

Re: Pyinstaller resources.DistributionNotFound 'workalendar'

2020-05-08 Thread LM FP
ent? > > 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

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 > erro

Pyinstaller resources.DistributionNotFound 'workalendar'

2020-05-08 Thread LM FP
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 run the exe file appears a warning: pkg_resources.DistributionNotFound: The 'workalendar' distribution was not fo

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Abdur-Rahmaan Janhangeer
Use the Dev version of pyinstaller. pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip Yours, Abdur-Rahmaan Janhangeer pythonmembers.club <http://www.pythonmembers.club/> | github <https://github.com/Abdur-rahmaanJ> Mauritius On Wed, Feb 5, 2020 at 7:31 AM

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Cameron Simpson
On 04Feb2020 21:27, Michael Torrie wrote: On 2/4/20 8:33 PM, Chris Angelico wrote: On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: I made a python gui with pyqt5 and packed it with pyinstaller. It is running well in my computer but when I gave it to a friend who doesn't have any p

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Michael Torrie
On 2/4/20 8:33 PM, Chris Angelico wrote: > On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: >> >> Hi, >> I made a python gui with pyqt5 and packed it with pyinstaller. It is >> running well in my computer but when I gave it to a friend who doesn't have >&g

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Chris Angelico
On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: > > Hi, > I made a python gui with pyqt5 and packed it with pyinstaller. It is > running well in my computer but when I gave it to a friend who doesn't have > any python version installed and it didn't run. The message

How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Souvik Dutta
Hi, I made a python gui with pyqt5 and packed it with pyinstaller. It is running well in my computer but when I gave it to a friend who doesn't have any python version installed and it didn't run. The message was "This app cannot be run on your pc.". How can I sol

Re: App made with pyinstaller is not running on another computer.

2020-02-02 Thread Abdur-Rahmaan Janhangeer
recompile with the latest dev versio of pyinstaller, fixed my issue. On Sun, 2 Feb 2020, 19:55 Souvik Dutta, wrote: > Hi, > I made an executable file with pyinstaller on my pc which had python 3.7. > It ran well in my pc but when I tried to run it on my friend computer > hav

Re: App made with pyinstaller is not running on another computer.

2020-02-02 Thread Chris Angelico
On Mon, Feb 3, 2020 at 2:57 AM Souvik Dutta wrote: > > Hi, > I made an executable file with pyinstaller on my pc which had python 3.7. > It ran well in my pc but when I tried to run it on my friend computer > having a 32 bit windows 10 os it didn't run it is just saying that &

App made with pyinstaller is not running on another computer.

2020-02-02 Thread Souvik Dutta
Hi, I made an executable file with pyinstaller on my pc which had python 3.7. It ran well in my pc but when I tried to run it on my friend computer having a 32 bit windows 10 os it didn't run it is just saying that "this app cannot be run on your pc". My pc has a 64 bit version of

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

pyinstaller

2020-01-15 Thread L A Smit
Hi New to programming. Please can u help me. I have python 3.7 installed on linux peppermint 10 and pyinstaller 3.6 but dont know how to run pyinstaller or how to install it on the correct diectory. Thx L Smit -- https://mail.python.org/mailman/listinfo/python-list

[ANN][SECURITY] Local Privilege Escalation in all Windows software frozen by PyInstaller in "onefile" mode

2020-01-09 Thread Hartmut Goebel
Severity: high: CVSSv3 score: 7.0 Packages: PyInstaller (Windows) Affected versions:  <= 3.5 Patched versions: 3.6, available at https://pypi.org/project/PyInstaller/ CVE identifier: CVE-2019-16784 Impact *Local Privilege Escalation *in all *Windows software frozen by PyInstaller*

[ANN] PyInstaller 3.6

2020-01-09 Thread Hartmut Goebel
Hello, on behalf of the PyInstaller development team I'm happy to announce PyInstaller 3.6. This version fixes a Local Privilege Escalation vulnerability effecting all Windows software frozen by PyInstaller in "onefile" mode - no matter which version of PyInstaller was

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 so

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. > &

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

PyInstaller needs Funding by your Company

2020-01-07 Thread Hartmut Goebel
Hi, as some of you might already know: PyInstaller is in urgent need of funding. If you are working for a company using PyInstaller, please make them pay their share. For details see <https://github.com/pyinstaller/pyinstaller/issues/4404> *If reasonable funding is not achieved until

Re: Issue About Install pyinstaller

2019-09-02 Thread Eryk Sun
On 9/1/19, Mehmet Furkan ÇOLAK wrote: > > I did “cmd > pip install pyinstaller > enter” > > from C:\Users\Furkan ÇOLAK\AppData\Local\Programs\Python\Python37-32 > but there isnt Script folder. > > İn cmd I see this kind of ERROR > 'pip' is not recog

Re: Issue About Install pyinstaller

2019-09-01 Thread MRAB
On 2019-09-01 17:15, Mehmet Furkan ÇOLAK wrote: Have a good day sir, I use python so much, I try to install pyinstaller in order to covert .py files to .exe files I did “cmd > pip install pyinstaller > enter” from C:\Users\Furkan ÇOLAK\AppData\Local\Programs\Python\Python37-32 but ther

Issue About Install pyinstaller

2019-09-01 Thread Mehmet Furkan ÇOLAK
Have a good day sir, I use python so much, I try to install pyinstaller in order to covert .py files to .exe files I did “cmd > pip install pyinstaller > enter” from C:\Users\Furkan ÇOLAK\AppData\Local\Programs\Python\Python37-32 but there isnt Script folder. İn cmd I see this kind of

pyinstaller not finding external fortran executable

2018-01-19 Thread Heli
N.out") returnValue = subprocess.call([execPath, self.runConfig] The script works fine and finds executable. The problem is when I use pyinstaller. I use the following command to create standalone executable that bundles my script, the external FORTRAN executable and all necessary pytho

Re: Linux/Windows GUI programming: GUI-fy a CLI using pyInstaller

2018-01-06 Thread Bob Martin
pyinstall, because I have to ship a standalone windows.exe >>> Any kind of installer is not acceptable. >>> >>> Reading https://github.com/pyinstaller/pyinstaller/wiki/Supported-Packages >>> supported GUI packages are PyGTK, PyQt4, PyQt5, wxPython >>> I have

Re: Linux/Windows GUI programming: GUI-fy a CLI using pyInstaller

2018-01-05 Thread Kevin Walzer
. Reading https://github.com/pyinstaller/pyinstaller/wiki/Supported-Packages supported GUI packages are PyGTK, PyQt4, PyQt5, wxPython I have tested tkinter by myself and it works, too. I do not like GTK and Qt, because they are too complex. I want to do VERY simple things and I prefer a simple GUI

Re: Funding continuous maintenance for PyInstaller?

2017-07-18 Thread justin walters
On Tue, Jul 18, 2017 at 3:01 AM, Hartmut Goebel < h.goe...@crazy-compilers.com> wrote: > Hi, > > I'm seeking advice how to fund continuous maintenance for an open source > project. > > *Do you have any idea how to fund continuous maintenance for PyInstaller? > Do

  1   2   >