File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,6 +78,10 @@ git pull
7878# 指定 venv 路径
7979./ov-cli setup --venv ./my-venv --with chat,convert
8080
81+ # 移除模块(自动计算独有包,共享包不受影响)
82+ ./ov-cli setup --remove chat # 卸载 chat 独有包
83+ ./ov-cli setup --remove asr,tts # 同时卸载 asr + tts
84+
8185# 修复模式(不重建,仅升级已安装的模块)
8286./ov-cli setup --fix
8387```
Original file line number Diff line number Diff line change @@ -75,6 +75,10 @@ Creates a Python venv and installs dependencies. Supports on-demand installation
7575# Custom venv path
7676./ov-cli setup --venv ./my-venv --with chat,convert
7777
78+ # Remove modules (auto-detects exclusive packages, shared ones kept)
79+ ./ov-cli setup --remove chat # Remove chat's exclusive packages
80+ ./ov-cli setup --remove asr,tts # Remove ASR + TTS
81+
7882# Fix mode (upgrade installed modules only, no rebuild)
7983./ov-cli setup --fix
8084```
You can’t perform that action at this time.
0 commit comments