Skip to content

Tag: pyinstaller

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…

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 …