fix(update): guide legacy deepseek users to codewhale
Harvests PR #3013 by @cyq1017 and PR #3053 by @angus-guo. Legacy deepseek/deepseek-tui binaries now return migration steps instead of trying to self-update through a missing codewhale binary, and the README/rebrand docs carry the same upgrade path. Co-authored-by: cyq1017 <61975706+cyq1017@users.noreply.github.com> Co-authored-by: gus <217034332+angus-guo@users.noreply.github.com>
This commit is contained in:
+12
-5
@@ -9,11 +9,16 @@ DeepSeek provider integration changed — only the local CLI / TUI brand.
|
||||
|
||||
```bash
|
||||
# 1. Uninstall the old wrapper or binaries.
|
||||
npm uninstall -g deepseek-tui # or cargo uninstall deepseek-tui-cli deepseek-tui
|
||||
# or brew uninstall deepseek-tui
|
||||
npm uninstall -g deepseek-tui # or:
|
||||
cargo uninstall deepseek-tui-cli 2>/dev/null || true
|
||||
cargo uninstall deepseek-tui 2>/dev/null || true
|
||||
# legacy Homebrew installs may use:
|
||||
# brew upgrade deepseek-tui
|
||||
|
||||
# 2. Install under the new name.
|
||||
npm install -g codewhale # or cargo install codewhale-cli codewhale-tui --locked
|
||||
npm install -g codewhale # or:
|
||||
cargo install codewhale-cli --locked
|
||||
cargo install codewhale-tui --locked
|
||||
# legacy Homebrew installs may still use
|
||||
# brew install deepseek-tui until the tap
|
||||
# formula is renamed.
|
||||
@@ -96,8 +101,10 @@ npm install -g codewhale
|
||||
### Cargo
|
||||
|
||||
```bash
|
||||
cargo uninstall deepseek-tui-cli deepseek-tui 2>/dev/null || true
|
||||
cargo install codewhale-cli codewhale-tui --locked
|
||||
cargo uninstall deepseek-tui-cli 2>/dev/null || true
|
||||
cargo uninstall deepseek-tui 2>/dev/null || true
|
||||
cargo install codewhale-cli --locked
|
||||
cargo install codewhale-tui --locked
|
||||
```
|
||||
|
||||
Or in a checkout:
|
||||
|
||||
Reference in New Issue
Block a user