30 lines
381 B
Markdown
30 lines
381 B
Markdown
# cwExcel - Python Desktop Application
|
||
|
||
一个基于 Python Tkinter 的桌面应用程序。
|
||
|
||
## 环境要求
|
||
|
||
- Python 3.8+
|
||
- Tkinter(Python 内置)
|
||
|
||
## 安装依赖
|
||
|
||
```bash
|
||
pip install -r requirements.txt
|
||
```
|
||
|
||
## 运行
|
||
|
||
```bash
|
||
python main.py
|
||
```
|
||
|
||
## 打包
|
||
|
||
```bash
|
||
pip install pyinstaller
|
||
pyinstaller --noconfirm cwExcel.spec
|
||
```
|
||
|
||
输出在 `dist/cwExcel/cwExcel.exe`。
|