# pyqt_时钟 **Repository Path**: henryamost/pyqt-clock ## Basic Information - **Project Name**: pyqt_时钟 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-11 - **Last Updated**: 2024-05-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 如何打包python程序 1.安装pyinstaller ``` pip install pyinstaller ``` 2.打包产生cmd命令框 ``` pyinstaller --onefile main.py ``` 3.去掉这个烦人的命令框,只需要多加一个参数 “–noconsole” ``` pyinstaller --onefile --noconsole main.py ```