python exe not working on other pc

Solutions on MaxInterview for python exe not working on other pc by the best coders in the world

showing results for - "python exe not working on other pc"
Benoit
28 Apr 2020
1# To convert my Python project to exe, I'm using Nuitka.
2# It creates a C code from your Python script and then compile it to 
3# an executable.
4
5# For the installation of Nuitka, https://nuitka.net/doc/user-manual.html#usage
6
7# Once Nuika is installed, you can create a .exe with
8
9nuitka --standalone --assume-yes-for-downloads --remove-output --disable-dll-dependency-cache --plugin-enable=pylint-warnings --plugin-enable=numpy --plugin-enable=pkg-resources --windows-disable-console your_script.py
10# (replace "your_script" with the name of your python project)
11
12# The .exe will work on any pc
similar questions
queries leading to this page
python exe not working on other pc