Re: [PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread ellio...@cox.net
are able to build a one-file build with kivy, by copying the kv files post build. When pyinstaller is creating the exe it is zipping all of the files. You may want to use --add -data to the command line, https://pyinstaller.org/en/stable/usage.html#cmdoption-add-data or move to using a specfile

Re: [PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread Aftab Sarwar
, I'll update with the result of my changes. Thanks a lot. On Thursday, May 9, 2024 at 8:47:52 PM UTC+5 Aftab Sarwar wrote: > What is the new relative path in Pyinstaller 6.x.x? Could you please tell > me? > > On Thursday, May 9, 2024 at 8:44:47 PM UTC+5 elli...@cox.net wrote: >

Re: [PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread Aftab Sarwar
What is the new relative path in Pyinstaller 6.x.x? Could you please tell me? On Thursday, May 9, 2024 at 8:44:47 PM UTC+5 elli...@cox.net wrote: > The location of files relative to the exe changed in PyInstaller 6.0 > You could try going back to version 5 and see if that makes a diff

Re: [PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread ellio...@cox.net
The location of files relative to the exe changed in PyInstaller 6.0 You could try going back to version 5 and see if that makes a difference. WIth kivy I have always used one-directory builds with a specfile. I then use innosetup to build a Windows Installer

[PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread Aftab Sarwar
Actually I do not add any files to the exe, I simple run the *pyinstaller -F program.py* Then place all the files in the dist directory. This has worked for me for very long. I make sure that all the kv files are there in the dist directory. Here is my data from the log file: [INFO

[PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread Aftab Sarwar
Actually I do not add any files to the exe, I simple run the *pyinstaller -F program.py* Then place all the files in the dist directory. This has worked for me for very long. I make sure that all the kv files are there in the dist directory. Here is my data from the log file: [INFO

[PyInstaller] Re: Pyinstaller exe shows blank screen

2024-05-09 Thread Elliot Garbus
Share your pyinstaller spec file. My guess is that the program can not find the kv files. DId you add them to the datas section? There is a kivy logfile located at: "C:\Users\your_username\.kivy\logs", read the log file for clues to the issue. Here is a working spec file - yo

[PyInstaller] Pyinstaller exe shows blank screen

2024-05-09 Thread Aftab Sarwar
I have a Kivy app that works fine from Pycharm IDE or when run from command line. However, after converting it to an exe with PyInstaller, the app only shows a blank screen and stays there. I'm using Python 3.12, Kivy 2.3 and Pyinstaller 6.6.0. [image: crs_blank_screen.png] *Note:* The app

Re: [PyInstaller] Re: How to avoid .pyc files from executable generation

2024-04-23 Thread ellio...@cox.net
PyInstaller works by bundling your code (your .pyc files), your dependencies, and a python interpreter.When you run the exe, your .pyc files are being run on the python interpreter. From: pyinstaller@googlegroups.com on behalf of Marcos Albuquerque Sent

[PyInstaller] Re: How to avoid .pyc files from executable generation

2024-04-23 Thread Marcos Albuquerque
Does pyinstaller need the pyc even if we don’t specify the one file parameter? Em terça-feira, 23 de abril de 2024 às 17:19:38 UTC-3, Elliot Garbus escreveu: > Pyinstaller works by bundling the .pyc files. If you want to hide your > source code more complely you could compile some

[PyInstaller] Re: How to avoid .pyc files from executable generation

2024-04-23 Thread Elliot Garbus
Pyinstaller works by bundling the .pyc files. If you want to hide your source code more complely you could compile some of you python modules with Cython to c. See: https://pyinstaller.org/en/stable/operating-mode.html#hiding-the-source-code On Tuesday, April 23, 2024 at 12:57:16 PM UTC-7

[PyInstaller] How to avoid .pyc files from executable generation

2024-04-23 Thread Marcos Albuquerque
Dear PyInstaller Support Team, I hope this message finds you well. I'm currently working on a project where I'm utilizing PyInstaller for generating executables from Python scripts. During this process, I noticed that PyInstaller includes .pyc files in the PYZ file. I understand the necessity

[PyInstaller] Re: Windows 11 Taskbar Icon is GUI Logo Icon Not EXE File Icon

2024-04-08 Thread 'Many Iceclimbers' via PyInstaller
which is described at: https://www.pythonguis.com/tutorials/packaging-tkinter-applications-windows-pyinstaller/#taskbar-icons On Sunday, April 7, 2024 at 6:22:03 PM UTC-4 Many Iceclimbers wrote: This problem was originally reported to SuperUser.com. https://superuser.com/questions/1838184/wi

[PyInstaller] Re: Windows 11 Taskbar Icon is GUI Logo Icon Not EXE File Icon

2024-04-07 Thread 'Many Iceclimbers' via PyInstaller
I found my solution which is described at: https://www.pythonguis.com/tutorials/packaging-tkinter-applications-windows-pyinstaller/#taskbar-icons On Sunday, April 7, 2024 at 6:22:03 PM UTC-4 Many Iceclimbers wrote: > This problem was originally reported to SuperUser.com. > >

[PyInstaller] Windows 11 Taskbar Icon is GUI Logo Icon Not EXE File Icon

2024-04-07 Thread 'Many Iceclimbers' via PyInstaller
This problem was originally reported to SuperUser.com. https://superuser.com/questions/1838184/windows-11-taskbar-icon-not-match-file-icon I am assuming that this can be specified by Pyinstaller. I need the Taskbar Icon to match the EXE file Icon. How to do this? -- You received this message

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-04 Thread Riza Dindir
> ​ > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.goog

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-04 Thread bwoodsend
with time as people stop using versions of pip that predate that change. In this case, all packages were already in .whl format so removing wheel wouldn’t have done any harm. ​ -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubs

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-03 Thread Riza Dindir
Hello I am using glibc. It turned out that another application was using Xlib, did not build that with pyinstaller (in the new virtual environment setting) at that time. The problem is resolved. I also did not have the wheel package in my pip packages. Is that required? It looks like

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-03 Thread bwoodsend
pip install pyinstaller (env) bash-5.2# pip freeze altgraph==0.17.4 packaging==24.0 pyinstaller==6.5.0 pyinstaller-hooks-contrib==2024.3 python-xlib==0.33 setuptools==69.2.0 six==1.16.0 wheel==0.43.0 (env) bash-5.2# echo 'import tkinter; print("I have not crashed!")' > test.p

[PyInstaller] Re: Unable to even run pyinstaller - pkg_resources.DistributionNotFound: The 'altgraph' distribution was not found and is required by the application

2024-04-03 Thread bwoodsend
I’m guessing you get the same error just running python -c "from altgraph.ObjectGraph import ObjectGraph"? Sounds more like a butchered altgraph install than anything to do with PyInstaller. Best I can suggest is to upgrade pip, wheel and setuptools then uninstall and reinstall

[PyInstaller] Re: Unable to even run pyinstaller - pkg_resources.DistributionNotFound: The 'altgraph' distribution was not found and is required by the application

2024-04-03 Thread Jacob Kruger
uot; On 2024/04/03 11:37, Jacob Kruger wrote: Hi there Up until roundabout a week or so ago - not definite time frame since don't necessarily make use of it too often - pyinstaller worked fine here., but, this week it suddenly started generating the error message mentioned in the subject l

[PyInstaller] Unable to even run pyinstaller - pkg_resources.DistributionNotFound: The 'altgraph' distribution was not found and is required by the application

2024-04-03 Thread Jacob Kruger
Hi there Up until roundabout a week or so ago - not definite time frame since don't necessarily make use of it too often - pyinstaller worked fine here., but, this week it suddenly started generating the error message mentioned in the subject line the moment I try to invoke it in any way

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-03 Thread Riza Dindir
Version - --- altgraph 0.17.4 packaging 24.0 pip 24.0 pyinstaller 6.5.0 pyinstaller-hooks-contrib 2024.3 python-xlib 0.33 (this is from the global site-packages - not in the venv

[PyInstaller] Re: REgarding pyinstaller and tkinter app packaging

2024-04-03 Thread bwoodsend
Can we get the runtime error message? And what distribution+version is this? -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstalle

[PyInstaller] REgarding pyinstaller and tkinter app packaging

2024-04-02 Thread Riza Dindir
Hello, I am using python 3.12.2 and pyinstaller 6.5.0 on linux kernel 6.6.23. Before switching to python 3.12, was using version 3.9 and was bundling a tkinter app with pyinstaller (do not remember the version of that pyinstaller though). The app was building coorectly and when run, it ran

[PyInstaller] Re: Streamlit app

2024-04-02 Thread bwoodsend
sys.argv.append(‘main_st.py’) Arhhh! See standard reply <https://pyinstaller.org/en/stable/runtime-information.html#using-file>. ​ -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop recei

[PyInstaller] Re: Streamlit app

2024-04-01 Thread Daniel Juschus
run a Python command line entry point from a subprocess. Even > without PyInstaller involved, there’s no guarantee that it’ll be findable. > Lookup what the entry point does (in this case calling from > streamlit.web.cli.main() > <https://github.

[PyInstaller] Re: Streamlit app

2024-03-29 Thread bwoodsend
Never try to run a Python command line entry point from a subprocess. Even without PyInstaller involved, there’s no guarantee that it’ll be findable. Lookup what the entry point does (in this case calling from streamlit.web.cli.main() <https://github.com/streamlit/streamlit/b

[PyInstaller] Streamlit app

2024-03-29 Thread Daniel Juschus
Hello, I just cannot manage to package a simple Streamlit app (a library for creating browser-based GUIs). I have read through all the material on the Pyinstaller website and the Github wiki. This is my main.py: import streamlit as st st.text("This program is running") and

[PyInstaller] Streamlit app

2024-03-29 Thread Daniel Juschus
gle Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/893ee7b7-ed66-41c5-a10d-c8d4e9db8d3cn%40googlegroups.com.

Re: [PyInstaller] Re: How to debug why share/icons folder get included

2024-03-27 Thread Patrik Dufresne
; for excluding the bits of Gtk that you don’t want. Although I’m surprised > that you can’t use Kivy to create the message dialogues. > ​ > > -- > You received this message because you are subscribed to a topic in the > Google Groups "PyInstaller" group. >

Re: [PyInstaller] Re: How to debug why share/icons folder get included

2024-03-25 Thread bwoodsend
se you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/aaf1d64

Re: [PyInstaller] Re: How to debug why share/icons folder get included

2024-03-25 Thread Patrik Dufresne
rom (which you can find > in the various build/*/*.toc files) is enough to answer that question. > Failing that, I guess you could look at the INFO: Loading module hook > 'hook-xxx.py' from '.../PyInstaller/hooks and read those hook files to > see if you can find anything that looks l

[PyInstaller] Re: How to debug why share/icons folder get included

2024-03-23 Thread bwoodsend
Hmm, it’s expected that knowing where a file came from (which you can find in the various build/*/*.toc files) is enough to answer that question. Failing that, I guess you could look at the INFO: Loading module hook 'hook-xxx.py' from '.../PyInstaller/hooks and read those hook files to see

[PyInstaller] How to debug why share/icons folder get included

2024-03-22 Thread Patrik Dufresne (IKUS Soft)
Hello, I'm working on a new application that make use of kivy & kivymd. I'm running into issue with the packaging because Pyinstaller include the content of my "share" folder on Linux. On Linux, the content of my /usr/share folder get copied into the build which make the final

Re: [PyInstaller] Re: Issue running the exe (Part 2)

2024-03-08 Thread Nicola Montecchiari
-2DD7-40BB-A1B8-4E2AA1F9FDF2> Il giorno ven 8 mar 2024 alle ore 00:15 bwoodsend ha scritto: > For ModuleNotFoundErrors use --hidden-import=photutils.geometry.core > ​ > > -- > You received this message because you are subscribed to the Google Groups > "PyInstaller" gr

Re: [PyInstaller] Set interpreter when creating executable

2024-03-07 Thread bwoodsend
If you expect to use a Python interpreter on the user’s machine then PyInstaller is completely the wrong tool. Assuming that Python interpreter is at a fixed location, you’re probably better off shipping your raw Python code along with a .bat file along the lines of: cd /D "%~dp0" &

[PyInstaller] Re: Issue running the exe (Part 2)

2024-03-07 Thread bwoodsend
For ModuleNotFoundErrors use --hidden-import=photutils.geometry.core ​ -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@google

RE: [PyInstaller] Set interpreter when creating executable

2024-03-07 Thread Steve Barnes
Hi Adam, Have you tried installing pyinstaller, and its dependencies, into the ArcGIS python and then using the ArcGIS python to build the executable. This should at least install the correct python interpreter into the exe bundle. You could then set the import path to the ArcGIS installation

[PyInstaller] Set interpreter when creating executable

2024-03-07 Thread Adam Fackler
on't know how to use it), so they will have the interpreter installed in the same default location. I have been looking into using Pyinstaller to make the tool into an exe file so that they can click on the icon to open the program, get the GUI (all in tkinter) to input the data, and run the tool.

[PyInstaller] Issue running the exe (Part 2)

2024-03-06 Thread Nicola Montecchiari
Dear All, after successfully executed the first exe build I did, I added some new features to my app, but this time I am not able to run the exe file anymore: pyinstaller variabilia.py -F --collect-data=photutils --collect-data=astroquery 638 INFO: PyInstaller: 6.4.0, contrib hooks: 2024.1 638

[PyInstaller] Re: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa7 in position 0: invalid start byte

2024-03-05 Thread Erik Husmark
Hi, I had a similar issue which seems to be caused by this one: https://github.com/pyinstaller/pyinstaller/pull/8306. I hope that will be released soon. For me it worked installing PyInstaller from github sources (remember to rebuild bootloader). I *think* PyInstaller 5.x also worked

[PyInstaller] Re: Please help with the hidden imports issues with django

2024-02-28 Thread bwoodsend
Please could you tell me what am I doing wrong? Trying to freeze a web server for one.  You’re chasing the wrong issue here. Django contains many submodules which can’t be loaded unless you have some strange stuff installed on your machine. PyInstaller collects each submodule only if its

[PyInstaller] Please help with the hidden imports issues with django

2024-02-28 Thread David Marceau
Hi there, I've been struggling to get rid of these hidden imports issues arising from django. Please could you tell me what am I doing wrong? -I have --hidden-import switches -I have tweaked the venv/lib/python3.11/site- packages/PyInstaller/hooks/hook-django.py Line 49 to contain the same list

Re: [PyInstaller] Issue in running exe

2024-02-24 Thread Nicola Montecchiari
are subscribed to the Google Groups > "PyInstaller" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to pyinstaller+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/pyin

Re: [PyInstaller] Issue in running exe

2024-02-23 Thread Brenainn Woodsend
Try adding --collect-data=photutils to your build command -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.co

[PyInstaller] Issue in running exe

2024-02-23 Thread Nicola Montecchiari
Hello everyone, I am building an executable for my astronomy application. When I run pyinstaller with the following parameters: pyinstaller variabilia.py --onefile --windowed The executable file is created, but it doesn't work. This is the log file of the execution of pyinstaller 275 INFO

[PyInstaller] Re: Pyinstaller exe file is not working .

2024-02-21 Thread bwoodsend
Top level ModuleNotFoundErrors normally mean you’re running PyInstaller from the wrong Python environment. Try running your original Python code from a terminal using python cyllo_installer.py and then building from that same environment using python -m PyInstaller cyllo_installer.py. One

[PyInstaller] Pyinstaller exe file is not working .

2024-02-21 Thread 'Ansar M' via PyInstaller
After converting my Python script into an executable (exe) file using PyInstaller, when I click on the exe file, it does not open. Upon checking the './script_name', I encounter a 'module not found' error. The error was: Traceback (most recent call last): File "cyllo_installer.py"

[PyInstaller] UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa7 in position 0: invalid start byte

2024-02-13 Thread A D V F (AVFranco)
t;", line 241, in _call_with_frames_removed File "gradio/components/__init__.py", line 1, in File "", line 1178, in _find_and_load File "", line 1149, in _find_and_load_unlocked File "", line 690, in _load_unlocked File ""

Re: [PyInstaller] Re: pyinstaller issue with scikit_learn or scipy

2024-01-27 Thread bwoodsend
My bad. 3.12.0 is the bad version. See https://github.com/pyinstaller/pyinstaller/issues/7992 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to p

Re: [PyInstaller] Re: pyinstaller issue with scikit_learn or scipy

2024-01-27 Thread niveda kumar
Hi, I am using py --version : 3.12.0. On Tue, Jan 23, 2024 at 4:04 PM bwoodsend wrote: > Are you using Python 3.10.0 by any chance? It's got a bug in it. You'll > need to upgrade Python. > > -- > You received this message because you are subscribed to the Google Groups > &

Re: [PyInstaller] no suitable image found libpython3.8.dylib

2024-01-26 Thread 'Chris Barker' via PyInstaller
d do it -- I suspect brew Python is using recent versions of system libs, whereas python.org Python is built against older versions, on purpose. That's kind of the point with brew. Also, brew Python may depend on other brew-supplied libs -- PyInstaller may not know to include those. -CHB > >

[PyInstaller] Re: no suitable image found libpython3.8.dylib

2024-01-26 Thread bruno D
atform and expecting it to run on > an old one is the wrong way to do things. > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@goo

Re: [PyInstaller] no suitable image found libpython3.8.dylib

2024-01-26 Thread bruno D
>> -- >> *From:* pyins...@googlegroups.com on behalf >> of bruno D >> *Sent:* Friday, January 26, 2024 4:33 AM >> *To:* PyInstaller >> *Subject:* [PyInstaller] no suitable image found libpython3.8.dylib >> >> hi, >&

Re: [PyInstaller] no suitable image found libpython3.8.dylib

2024-01-26 Thread 'Chris Barker' via PyInstaller
shoot. > -- > *From:* pyinstaller@googlegroups.com on > behalf of bruno D > *Sent:* Friday, January 26, 2024 4:33 AM > *To:* PyInstaller > *Subject:* [PyInstaller] no suitable image found libpython3.8.dylib > > hi, > i am getting crazy with pyinstaller, i build my .dmg

Re: [PyInstaller] no suitable image found libpython3.8.dylib

2024-01-26 Thread ellio...@cox.net
On MacOS you want to build the app on the oldest OS you are willing to support. Backward compatibility is a crap shoot. From: pyinstaller@googlegroups.com on behalf of bruno D Sent: Friday, January 26, 2024 4:33 AM To: PyInstaller Subject: [PyInstaller

[PyInstaller] Re: no suitable image found libpython3.8.dylib

2024-01-26 Thread bwoodsend
Sounds like your Python environment isn't compatible with mavericks. Generally speaking, building on a new platform and expecting it to run on an old one is the wrong way to do things. -- You received this message because you are subscribed to the Google Groups "PyInstaller&q

[PyInstaller] no suitable image found libpython3.8.dylib

2024-01-26 Thread bruno D
hi, i am getting crazy with pyinstaller, i build my .dmg on monterey with python 3.8.13 and launch my .dmg on mavericks, i have this error : no suitable image found libpython3.8.dylib could you help to fix my issue ? Best regards Bruno -- You received this message because you are subscribed

[PyInstaller] Re: pyinstaller issue with scikit_learn or scipy

2024-01-23 Thread bwoodsend
Are you using Python 3.10.0 by any chance? It's got a bug in it. You'll need to upgrade Python. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to p

[PyInstaller] pyinstaller issue with scikit_learn or scipy

2024-01-23 Thread niveda kumar
1.1.0 joblib1.3.2 numpy 1.26.3 openpyxl 3.1.2 packaging 23.2 pandas2.2.0 pefile2023.2.7 pip 23.2.1 pyinstaller 6.3.0 pyinstaller-hooks

[PyInstaller] Re: Set python command option -OO

2024-01-22 Thread Elliot Garbus
This worked: python -OO -m PyInstaller --clean -y .\my-specfile.spec On Saturday, January 20, 2024 at 4:15:15 PM UTC-7 Elliot Garbus wrote: > Thank you - that is very helpful. > The desire to remove doc-strings has to do with their desire to keep > things "more secure".

[PyInstaller] Re: Set python command option -OO

2024-01-20 Thread Elliot Garbus
e to 2, it doesn’t remove either > the assertions or docstrings since they need to happen at compile time. You > used to be able to use python -OO -m PyInstaller your-code.py but > pycparser (one of PyInstaller’s indirect Windows-only dependencies) > doesn’t allow it now. That sai

[PyInstaller] Re: Set python command option -OO

2024-01-20 Thread bwoodsend
You can use: exe = EXE( pyz, a.scripts, [('O', None, 'OPTION'), ('O', None, 'OPTION')], ... but, whilst it does set sys.flags.optimize to 2, it doesn’t remove either the assertions or docstrings since they need to happen at compile time. You used to be able to use python -OO -m PyInstaller

[PyInstaller] Set python command option -OO

2024-01-20 Thread Elliot Garbus
How do I set the python command line option -OO. The objective is to disable assert statements and remove docstrings. Looking here: Using Spec Files — PyInstaller 6.3.0 documentation <https://pyinstaller.org/en/stable/spec-files.html#specifying-python-interpreter-options> It appears t

[PyInstaller] Re: Will a compile work across different Windows versions?

2024-01-17 Thread Steve Barnes
> -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/d562d1b3-6530-455c-adcc-2b8d6a985a49n%40googlegroups.com.

[PyInstaller] Re: Will a compile work across different Windows versions?

2024-01-16 Thread bwoodsend
They're interchangeable. You only need to build on one of them. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.co

[PyInstaller] Will a compile work across different Windows versions?

2024-01-16 Thread Kurt Johnson
If you create an EXE using PyInstaller in Windows 10, for example, will it also work in Windows 11? Or would you need to re-create on a Windows 11 machine? -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this grou

Re: [PyInstaller] Re: Unable to create .exe with 'import gooey' and 'import openpyxl' in my py script.

2024-01-08 Thread 'Chris Barker' via PyInstaller
. then install PYINstllerin into the Python you want. make sure your app runs with that Python. Run PyInstaller again. In short: make sure EVERYTHING you are doing is with the same Python install. -HTH, -CHB C:\Users\kip\Downloads\csv2xcl>pyinstaller -F build.spec >> 450 INFO: PyInstaller: 6.3

[PyInstaller] Re: Unable to create .exe with 'import gooey' and 'import openpyxl' in my py script.

2024-01-08 Thread Kip Garvey
Tony C's post highlights a situation that may be affecting my .exe build. I think my .py script runs ok in the Python 3.11 environment because that's where the two modules (openpyxl and gooey) reside in a sites-packages folder. However, when I run pyinstaller, I see that the Python interpreter

[PyInstaller] Unable to create .exe with 'import gooey' and 'import openpyxl' in my py script.

2024-01-07 Thread Kip Garvey
My py script runs as expected when launched using python. Creating a .exe using pyinstaller does not work. Both modules are not imported, though they run fine in the script otherwise on the same Windows system. I've researched daily for a week now, no luck. My script: 4gg-csv2xcl.py #!python3

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony C
try in the build/*/xref-*.html. I’m > guessing it’s going to say *not found* which won’t tell us much but it > might say something else. > ​ > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and s

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony C
und* which won’t tell us much but it > might say something else. > ​ > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony Cappellini
which won’t tell us much but it > might say something else. > ​ > > -- > You received this message because you are subscribed to a topic in the > Google Groups "PyInstaller" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/pyinstal

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony Cappellini
this message because you are subscribed to a topic in the > Google Groups "PyInstaller" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/pyinstaller/Uo-ss_svKXc/unsubscribe. > To unsubscribe from this group and all its topics, send an email to

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread bwoodsend
Also worth checking the imp entry in the build/*/xref-*.html. I’m guessing it’s going to say *not found* which won’t tell us much but it might say something else. ​ -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubs

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread 'Chris Barker' via PyInstaller
On Fri, Jan 5, 2024 at 9:34 AM Tony Cappellini wrote: > >>But what does the second line of PyInstaller’s build log say? > 483 INFO: PyInstaller: 6.3.0 > 483 INFO: Python: 3.11.2 > That looks right then. I'm no expert, but it seems something is going fundamentally wrong h

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony Cappellini
>>But what does the second line of PyInstaller’s build log say? 483 INFO: PyInstaller: 6.3.0 483 INFO: Python: 3.11.2 >>To PyInstaller, there’s no way of telling what modules are standard lib or 3rd party or your own code. The path to the python interpreter should ma

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread bwoodsend
Python 3.11.2 (tags/v3.11.2:878ead1, Feb 7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)] on win32 But what does the second line of PyInstaller’s build log say? The simple fact that pyinstaller is complaining about stdlib modules is just odd. To PyInstaller, there’s no way of telling what

[PyInstaller] Re: Understanding PyInstaller

2024-01-05 Thread Tony C
The simple fact that pyinstaller is complaining about stdlib modules is just odd. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstalle

Re: [PyInstaller] Understanding PyInstaller

2024-01-05 Thread Tony C
result = module.function_call() I've tried several of these "https://www.pyinstaller.org/en/stable/when-things-go-wrong.html#helping-pyinstaller-find-modules; fixes. I've gotten past a few of them by doing "Add file". This is the step that seems wrong though, sin

[PyInstaller] Re: Understanding PyInstaller

2024-01-05 Thread Tony C
Yes, it's Python 3.11 Python 3.11.2 (tags/v3.11.2:878ead1, Feb 7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. On Thursday, January 4, 2024 at 6:05:54 PM UTC-8 bwoodsend wrot

Re: [PyInstaller] Understanding PyInstaller

2024-01-04 Thread 'Jasper Harrison' via PyInstaller
To answer the more general question of why PyInstaller can't find a certain module at runtime - it only packages the modules it thinks your program needs, and sometimes it doesn't detect a module correctly, leading to it not being included. Jasper Harrison, aka Legorooj Core Developer

[PyInstaller] Re: Understanding PyInstaller

2024-01-04 Thread bwoodsend
Are you sure that your pyinstaller is not in a Python 3.12 environment? Freezing import imp works fine for me under Python 3.11. ​ -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving e

[PyInstaller] Understanding PyInstaller

2024-01-04 Thread Tony C
Hello, I've been reading through the Pyinstaller docs trying to understand why the Python interpreter can find modules at application runtime (as sources, NOT an exe), but Pyinstaller cannot. Pyinstaller itself is also a python application. Oddly enough, I ran into an issue today where

[PyInstaller] PyInstaller: FormatMessageW failed on 64-bit

2023-12-27 Thread Joe R.
Hello, I'm unfortunately having another issue getting my Python packages in my PyInstaller script fully up-to-date. I'm a current developer on PySolFC - we have an AppVeyor script that runs PyInstaller to generate our installers. And while it used to work fine, we recently had some issues

[PyInstaller] Pyinstaller 6.3.0 exe error: missing PySide2.QtWidgets module

2023-12-27 Thread Pál Gélák
It seems to be everythin installed fine. In PyCharm runs well, but after PyInstaller the exe stops with missing module error. I tried --hidden imports, colletc subsystem and that I found on net. I didnt find a solution. Pali -- You received this message because you are subscribed

[PyInstaller] Different results when running from .exe and .py files

2023-12-14 Thread Miroslav Blabla
)- you can see that the "label area" is different size... Thank you for your answer.[image: diff_results.PNG][image: difference_thresh.PNG] -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop r

[PyInstaller] Download Foxfi Full Version Apk

2023-12-01 Thread Rae Puleo
u received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.c

[PyInstaller] X Force X32 Exe Dynamo Studio 2008 Keygen

2023-12-01 Thread Rae Puleo
x force x32 exe Dynamo Studio 2008 keygen *DOWNLOAD* https://stitdaewsumpde.blogspot.com/?ua=2wHpqL eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, sen

[PyInstaller] NCH Pixillion Image Converter 6.15 Crack Registration Code [2020]

2023-12-01 Thread Rae Puleo
NCH Pixillion Image Converter 6.15 Crack Registration Code [2020] *DOWNLOAD* https://stitdaewsumpde.blogspot.com/?ua=2wHpqx eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiv

[PyInstaller] Active Boot Disk Suite 9 0 0 Full Serial Key

2023-12-01 Thread Rae Puleo
2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://g

[PyInstaller] Descargar Novela El Clon Completa Telemundo

2023-12-01 Thread Rae Puleo
the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/5920e95f-d616-480f-a51e-055c39c60e6an%40googlegroups.com.

Re: [PyInstaller] Re: Importing Python extension module (.pyd) at runtime, not packaged in .exe

2023-12-01 Thread Mark Melvin
Yes, the .pyd depends on a .DLL. And normally adding the parent folder to sys.path is all I need to do, but once it's run through pyInstaller, this no longer works. Perhaps the issue is that the .pyd is being included in my .exe when I don't actually want it to be? I may just stuff everything

Re: [PyInstaller] Re: Importing Python extension module (.pyd) at runtime, not packaged in .exe

2023-12-01 Thread Brenainn Woodsend
-run the pyInstaller build with my PYTHONPATH set to the location where my .pyd file resides, it creates an executable that *does* work. So it appears that pyInstaller has its own notion of a PYTHONPATH that can be augmented at build time but not runtime?? This also suggests the same. I think

[PyInstaller] Vampirates Book 1 Pdf Free Download

2023-11-30 Thread Kanesha Roldan
Vampirates Book 1 Pdf Free Download *Download Zip* https://urllio.com/2wH84Y eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstalle

[PyInstaller] Atul Purohit Non Stop Garba Mp3 Free Download 201411l

2023-11-30 Thread Beatrix Gerke
Atul Purohit Non Stop Garba Mp3 Free Download 201411l *Download* https://tinurli.com/2wH60c eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, sen

[PyInstaller] The Powerpuff Girls Rule!!! 720p

2023-11-30 Thread Beatrix Gerke
and boys are watching shows from the chick that entertained ME as a kid. ? eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to pyinstalle

[PyInstaller] ErrorEND For Pc Optimaization.full.rar

2023-11-30 Thread Beatrix Gerke
ErrorEND for pc optimaization.full.rar *Download Zip* https://tinurli.com/2wH5ZX eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to p

[PyInstaller] No Mercy Korean Movie Eng Sub Download 15

2023-11-30 Thread Beatrix Gerke
No Mercy Korean Movie Eng Sub Download 15 *Download* https://tinurli.com/2wH5ZN eebf2c3492 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to p

  1   2   3   4   5   6   7   8   9   10   >