Skip to content
Advertisement

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

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

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

Advertisement