I'm making an GUI application using Tkinter, but I'm not able to run this file on other operating systems. How can I do this?
Python version is 3.5.2, and working on Windows.
I'm making an GUI application using Tkinter, but I'm not able to run this file on other operating systems. How can I do this?
Python version is 3.5.2, and working on Windows.
Install PyInstaller from PyPI:
pip install pyinstaller
Go to your program’s directory and run:
pyinstaller yourprogram.py
This will generate the bundle in a subdirectory called dist
.