Python code to Desktop software convert for windows
1.pip install pyinstaller
2.python -m PyInstaller --onefile --windowed calculator.py
Then copy .exe file from dist and paste on desktop or others directory
Like below.
dist/calculator.exe
after run this .exe file software will work.
--------------------------
before create any desktop software, use below command.
student_management/
1.python -m venv venv
2.venv\Scripts\activate
use above two commands inside project folder.
No comments