blob: 65f705d38747cfd9c284106884c3702567c64735 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
print("SSS Coding Club 2021-2022")
"""
Turn .py file into .exe
https://www.geeksforgeeks.org/convert-python-script-to-exe-file/
pip install pyinstaller
pyinstaller --onefile -w 'filename.py'pip
OR:
.\pyinstaller --onefile -w 'filename.py'
pyinstaller --hidden-import 'package_name' --onefile 'filename.py'
"""
|