@qwen-code/qwen-code 0.10.0-preview.0 → 0.10.0-preview.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -1
- package/cli.js +3331 -3213
- package/locales/de.js +0 -4
- package/locales/en.js +0 -4
- package/locales/ja.js +0 -3
- package/locales/pt.js +0 -4
- package/locales/ru.js +0 -4
- package/locales/zh.js +0 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,6 +31,24 @@ Qwen Code is an open-source AI agent for the terminal, optimized for [Qwen3-Code
|
|
|
31
31
|
|
|
32
32
|
## Installation
|
|
33
33
|
|
|
34
|
+
### Quick Install (Recommended)
|
|
35
|
+
|
|
36
|
+
#### Linux / macOS
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
curl -fsSL https://qwen-code-assets.oss-cn-hangzhou.aliyuncs.com/installation/install-qwen.sh | bash
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
#### Windows (Run as Administrator CMD)
|
|
43
|
+
|
|
44
|
+
```cmd
|
|
45
|
+
curl -fsSL -o %TEMP%\install-qwen.bat https://qwen-code-assets.oss-cn-hangzhou.aliyuncs.com/installation/install-qwen.bat && %TEMP%\install-qwen.bat
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
> **Note**: It's recommended to restart your terminal after installation to ensure environment variables take effect.
|
|
49
|
+
|
|
50
|
+
### Manual Installation
|
|
51
|
+
|
|
34
52
|
#### Prerequisites
|
|
35
53
|
|
|
36
54
|
```bash
|
|
@@ -38,7 +56,7 @@ Qwen Code is an open-source AI agent for the terminal, optimized for [Qwen3-Code
|
|
|
38
56
|
curl -qL https://www.npmjs.com/install.sh | sh
|
|
39
57
|
```
|
|
40
58
|
|
|
41
|
-
#### NPM
|
|
59
|
+
#### NPM
|
|
42
60
|
|
|
43
61
|
```bash
|
|
44
62
|
npm install -g @qwen-code/qwen-code@latest
|