a phone sell system demo using python, sqlite3 and PySimpleGUI
conda create -n phone_sell pthon=3.9
conda activate phone_sell
pip install pysqlite3
pip install pysimplegui
run:
python main.py
or compile .exe file:
pip install pyinstaller
pyinstaller -F -w main.py
see 简易手机销售系统