refactor(initialization): 移除pip安装步骤

This commit is contained in:
2025-08-26 16:45:49 +08:00
parent 2f87d79713
commit 183e35ac97
5 changed files with 154 additions and 58 deletions

View File

@@ -23,7 +23,6 @@ export interface FrontendConfig {
gitInstalled?: boolean
backendExists?: boolean
dependenciesInstalled?: boolean
pipInstalled?: boolean
}
const DEFAULT_CONFIG: FrontendConfig = {
@@ -38,7 +37,6 @@ const DEFAULT_CONFIG: FrontendConfig = {
gitInstalled: false,
backendExists: false,
dependenciesInstalled: false,
pipInstalled: false,
}
// 读取配置(内部使用,不触发保存)