Files
diskmanager2/requirements.txt
2026-02-09 03:14:35 +08:00

18 lines
524 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Linux 存储管理工具 - Tkinter 版本
# 核心依赖Python 内置):
# - tkinter (GUI)
# - threading (后台任务)
# - queue (线程通信)
# 可选依赖:
# pexpect - 用于交互式命令(如 RAID 创建时的密码输入)
# 安装: pip3 install pexpect
# CentOS 8 安装命令:
# sudo yum install python3 python3-tkinter parted mdadm lvm2
# sudo pip3 install pexpect
# Ubuntu/Debian 安装命令:
# sudo apt-get install python3 python3-tk parted mdadm lvm2
# sudo pip3 install pexpect