4runr-os 2.1.23 → 2.1.24
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/SETUP.md +9 -24
- package/package.json +1 -1
package/SETUP.md
CHANGED
|
@@ -1,32 +1,22 @@
|
|
|
1
1
|
# 4Runr OS - Quick Setup Guide
|
|
2
2
|
|
|
3
|
-
## One-Time Setup
|
|
3
|
+
## One-Time Setup
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**Windows, Linux, or macOS - same command:**
|
|
6
6
|
|
|
7
|
-
```
|
|
8
|
-
# Install 4runr-os
|
|
7
|
+
```bash
|
|
9
8
|
npm install -g 4runr-os
|
|
10
|
-
|
|
11
|
-
# Done! Now just use:
|
|
12
|
-
4r
|
|
13
9
|
```
|
|
14
10
|
|
|
15
|
-
**That's it!**
|
|
16
|
-
|
|
17
|
-
---
|
|
11
|
+
**That's it!** No Rust, no build tools, no complexity.
|
|
18
12
|
|
|
19
|
-
|
|
13
|
+
## Daily Use
|
|
20
14
|
|
|
21
15
|
```bash
|
|
22
|
-
# Install 4runr-os
|
|
23
|
-
npm install -g 4runr-os
|
|
24
|
-
|
|
25
|
-
# Done! Now just use:
|
|
26
16
|
4r
|
|
27
17
|
```
|
|
28
18
|
|
|
29
|
-
**
|
|
19
|
+
**Done!** Just `4r` every time you want to use it.
|
|
30
20
|
|
|
31
21
|
---
|
|
32
22
|
|
|
@@ -65,15 +55,10 @@ export PATH=$PATH:$(npm config get prefix)/bin
|
|
|
65
55
|
|
|
66
56
|
### "mk3-tui binary not found"
|
|
67
57
|
|
|
68
|
-
|
|
58
|
+
This shouldn't happen if binaries are included in the package. If you see this:
|
|
69
59
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
- Or use GNU toolchain: `rustup toolchain install stable-x86_64-pc-windows-gnu && rustup default stable-x86_64-pc-windows-gnu`
|
|
73
|
-
|
|
74
|
-
**Linux/macOS:**
|
|
75
|
-
- Install Rust: `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh`
|
|
76
|
-
- Then run `4r` again - it will build automatically
|
|
60
|
+
1. Make sure you have the latest version: `npm install -g 4runr-os@latest`
|
|
61
|
+
2. If still happening, the package will try to build from source automatically (requires Rust)
|
|
77
62
|
|
|
78
63
|
---
|
|
79
64
|
|