@inference-gateway/cli 0.178.1 → 0.178.3
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 +4 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,20 +139,10 @@ infer --help
|
|
|
139
139
|
### Using Go Install
|
|
140
140
|
|
|
141
141
|
```bash
|
|
142
|
-
go install github.com/inference-gateway/cli@latest
|
|
142
|
+
go install github.com/inference-gateway/cli/cmd/infer@latest
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
This installs the binary as `
|
|
146
|
-
|
|
147
|
-
```bash
|
|
148
|
-
mv $(go env GOPATH)/bin/cli $(go env GOPATH)/bin/infer
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
Or use an alias:
|
|
152
|
-
|
|
153
|
-
```bash
|
|
154
|
-
alias infer="$(go env GOPATH)/bin/cli"
|
|
155
|
-
```
|
|
145
|
+
This installs the binary as `infer`.
|
|
156
146
|
|
|
157
147
|
### Using Nix Flake / Flox
|
|
158
148
|
|
|
@@ -269,7 +259,7 @@ For advanced verification with Cosign signatures, see [Binary Verification Guide
|
|
|
269
259
|
```bash
|
|
270
260
|
git clone https://github.com/inference-gateway/cli.git
|
|
271
261
|
cd cli
|
|
272
|
-
go build -o infer cmd/infer
|
|
262
|
+
go build -o infer ./cmd/infer
|
|
273
263
|
sudo mv infer /usr/local/bin/
|
|
274
264
|
```
|
|
275
265
|
|
|
@@ -278,7 +268,7 @@ On Windows, build with:
|
|
|
278
268
|
```powershell
|
|
279
269
|
git clone https://github.com/inference-gateway/cli.git
|
|
280
270
|
cd cli
|
|
281
|
-
go build -o infer.exe cmd/infer
|
|
271
|
+
go build -o infer.exe ./cmd/infer
|
|
282
272
|
# The binary is at .\infer.exe
|
|
283
273
|
```
|
|
284
274
|
|