Skip to content

Commit a194cc4

Browse files
author
Tanmoy
committed
Docs: Add detailed installation and update guides for all platforms
1 parent e5811e9 commit a194cc4

1 file changed

Lines changed: 34 additions & 9 deletions

File tree

README.md

Lines changed: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,40 @@ This is a milestone release that transitions TechScript to a **fully native Rust
3636

3737
TechScript is designed to be **human-first**. No semicolons, no brackets, just pure logic. This guide will take you from your first "Hello" to building professional 3D simulations.
3838

39-
### 🏁 Step 0: Installation
40-
41-
| Platform | Recommended Method | Get Started |
42-
|:---|:---|:---|
43-
| **🪟 Windows** | **Full Setup Wizard** | [Download Setup](bin/TechScript_v1.0.5_Setup.exe) |
44-
| **🪟 Windows** | Standalone Binary | [Download (.exe)](bin/TechScript_TX.exe) |
45-
| **🐧 Linux** | One-Liner Install | `curl -fS scripts/install.sh | bash` |
46-
| **🍎 macOS** | One-Liner Install | `curl -fS scripts/install.sh | bash` |
47-
| **📱 Android** | Termux Engine | `pkg install python && pip install techscript-lang` |
39+
### 🏁 Step 0: Installation & Updates
40+
41+
| Platform | Install Method | Link / Command | Update Method |
42+
|:---|:---|:---|:---|
43+
| **🪟 Windows** | **Full Setup Wizard** | [Download Setup](bin/TechScript_v1.0.5_Setup.exe) | Run new Setup.exe |
44+
| **🪟 Windows** | Standalone Binary | [Download (.exe)](bin/TechScript_TX.exe) | Replace old .exe |
45+
| **🐧 Linux** | One-Liner Install | `curl -fS scripts/install.sh | bash` | Re-run command |
46+
| **🍎 macOS** | One-Liner Install | `curl -fS scripts/install.sh | bash` | Re-run command |
47+
| **📱 Android** | Termux Engine | `pkg install python && pip install techscript-lang` | `pip install -U techscript-lang` |
48+
49+
---
50+
51+
### 📥 Detailed Setup Guides
52+
53+
#### 🪟 Windows (Setup Wizard)
54+
1. Download **`TechScript_v1.0.5_Setup.exe`**.
55+
2. Double-click to run. It will extract the high-performance Rust engine to your system.
56+
3. The installer automatically adds **`tech`** to your System PATH.
57+
4. **Update**: Simply download the latest Setup.exe and run it again to overwrite the old version.
58+
59+
#### 🐧 Linux & 🍎 macOS (Terminal)
60+
1. Open your terminal.
61+
2. Run the universal installer:
62+
```bash
63+
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bash
64+
```
65+
3. This script auto-detects your architecture (Intel/M1/M2) and installs the Native Rust binary.
66+
4. **Update**: Re-run the same `curl` command to fetch the latest binary instantly.
67+
68+
#### 📱 Android (Termux)
69+
1. Install Termux from F-Droid.
70+
2. Run: `pkg update && pkg upgrade`
71+
3. Install the engine: `pkg install python && pip install techscript-lang`
72+
4. **Update**: Run `pip install --upgrade techscript-lang`.
4873

4974
---
5075

0 commit comments

Comments
 (0)