I am trying to create an executable from a python script, using pyinstaller, and am getting the error seen in the subject line. The particulars: python – version 3.9.2 pyinstaller – version 4 I am running on Debian Linux I evoke pyinstaller as: When I looked to see what libpython*.so files were resident, I see libpython3.7*.so, and the error shows
Tag: pyinstaller
How can I make Windows beep when pyinstaller is finished running?
Good morning! I’m currently trying to work on making an executable for my Python script using PyInstaller and so I often have to wait for it to finish compiling (is that the right word in this case?), but I don’t want to keep staring at the screen unnecessarily. I understand that I can import winsound and make it beep that
Issues compiling mediapipe with pyinstaller on macos
I have issues compiling a project with mediapipe via pyinstaller on macos so far I tried: The .app does not open, and if I try the unix exec, I get I work with conda, my env is in python 3.8, mediapipe 0.8.5 and OSX 10.15.7 Thanks in advance Answer I ran into this issue too and just figured it out
Buttons in Auto Py to Exe aren’t clickable
I heard about the tool “auto-py-to-exe” but when i open it with the window opens but the language box is empty and no button is clickable. I tried to reinstall it but the error is happening every time and I don’t know why. Is it because i use Chrome or something like that? Maybe you can help me Answer I
pyinstaller makes an empty black window of my tkinter gui
For a very simple example, consider the following code which produces a window like so: After running pyinstaller –onefile –noconsole minimal.py (the name of the code file is minimal.py), I obtain, in the dist folder a bundle file (the app) which, when run, gives me the following: The menu works just normally (that’s the reason for which I included it;
Pyinstaller FileNotFoundError: ‘C:\Users\axela\PycharmProjects\RT_HMap\dist\main\cmlib\version.txt’
Good evening Im new to python and I wanted to make an executable with pyinstaller but Im gettin the following error. FileNotFoundError: [Errno 2] No such file or directory: ‘C:UsersalexaPycharmProjectsRT_HMapdistmaincmlibversion.txt’ Does anybody know what it means and how I can solve it ? Edit: the complete error would be enter image description here Answer ‘C:UsersalexaPycharmProjectsRT_HMapdistmaincmlibversion.txt’ This just means that the
How do I remove the file path from the console window of python exe file?
I have made a simple “Hello World” app in python and turned it into a standalone exe file using pyinstaller. The problem is, the title bar of the console always shows the file path of the exe file. Is there any way to remove the filepath from the window? here is the image Answer Change the name of the console
How to run exe file from python script converted to exe
I have two EXE files, both are actually python scripts, converted using pyinstaller ( Using Auto Py to Exe ). file1.exe : is the app. file2.exe : is license app, which checks the license, if ok it executes file1, if not it exits. My problem is that when I merge the two exe files to be in 1 exe file
How can I turn a python file into a exe file withou this error
Well, I am making a personal project, for this project, I need to run a python script every time on the computer, and this script needs to start when the computer is turned on, for this, I used PyInstaller to turn the script in a “.exe” file, but an error is shown. Python Code, filename; “teste.py”: this code just show
Can’t find SpaCy model when packaging with PyInstaller
I am using PyInstaller package a python script into an .exe. This script is using spacy to load up the following model: en_core_web_sm. I have already run python -m spacy download en_core_web_sm to download the model locally. The issue is when PyInstaller tries to package up my script it can’t find the model. I get the following error: Can’t find