Go to file
2025-01-09 14:58:42 +08:00
.gitignore Initial commit 2025-01-08 21:25:32 +08:00
build.py refactor: build as onedir 2025-01-08 22:18:54 +08:00
calculator.py remove: unnecessary import 2025-01-09 14:58:42 +08:00
README.md feat: README.md 2025-01-08 22:14:05 +08:00
requirements.txt Initial commit 2025-01-08 21:25:32 +08:00
setup.py Initial commit 2025-01-08 21:25:32 +08:00

PyQt6 计算器

这是一个使用 PyQt6 构建的现代计算器应用。

使用说明

  1. 克隆仓库:

    git clone https://git.taurusxin.com/taurusxin/modern-calculator.git
    cd modern-calculator
    
  2. 创建并激活虚拟环境:

    Windows 系统

    python -m venv venv
    .\venv\Scripts\activate
    

    macOS 和 Linux 系统

    python3 -m venv venv
    source venv/bin/activate
    
  3. 安装所需依赖:

    pip install -r requirements.txt
    
  4. 运行应用:

    python calculator.py
    

打包应用

要将应用打包成独立的可执行文件,请运行以下脚本:

python build.py