You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added comprehensive Linux manual installation instructions
- Included both system-wide and user-local installation options
- Added prerequisites section for Linux manual installation
- Improved commands based on community suggestions in issue #263
- Used wget instead of curl for better compatibility
- Added clear examples for different installation scenarios
Fixes#263
Signed-off-by: shanky <sankalpt92@gmail.com>
# Add to PATH if not already done (add to ~/.profile, ~/.bashrc, or ~/.zshrc)
421
+
echo'export PATH="$HOME/bin:$PATH"'>>~/.profile
422
+
423
+
# Reload your shell configuration or run:
424
+
source~/.profile
425
+
426
+
# Verify installation
427
+
tenv --version
428
+
```
429
+
430
+
For other shell configurations:
431
+
432
+
```sh
433
+
# For bash users
434
+
echo'export PATH="$HOME/bin:$PATH"'>>~/.bashrc
435
+
source~/.bashrc
436
+
437
+
# For zsh users
438
+
echo'export PATH="$HOME/bin:$PATH"'>>~/.zshrc
439
+
source~/.zshrc
440
+
```
441
+
442
+
##### Notes
443
+
444
+
- Any subsequent call to `tenv` will refer to the calling user's `$HOME` directory, thus installing, running and listing whatever binaries are present in the local directory (`~/.tenv` by default).
445
+
- All commands above use `wget` instead of `curl` as it's more commonly available in minimal Linux installations.
446
+
- The installation uses a single pipeline which is more efficient than command concatenation.
447
+
- These commands can be easily automated for CI/CD scenarios.
Get the most recent packaged binaries (`.deb`, `.rpm`, `.apk`, `pkg.tar.zst `, `.zip` or `.tar.gz` format) by visiting the [release page](https://github.com/tofuutils/tenv/releases). After downloading, unzip the folder and seamlessly integrate it into your system's `PATH`.
0 commit comments