Skip to content

Commit

Permalink
Update installation notes in README.md
Browse files Browse the repository at this point in the history
Installation notes have not been updated and in the interim, the [docs page](https://docs.pantheon.io/terminus/install#standalone-terminus-phar) has more up-to-date documentation than the readme.

Additionally, there's a link to the docs page for "other installation methods" but there aren't actually any other installation methods on the docs site than what are (or should be) listed here.
  • Loading branch information
jazzsequence authored Jan 29, 2025
1 parent d53ff89 commit 908a69a
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ Our documentation is kept in the Terminus Manual, located here: https://pantheon
|------------------------|------------|
| MacOS | 10.14+ |
| Ubuntu | Latest LTS |
| Windows + WSL + Ubuntu | TBD |
| Windows + WSL + Ubuntu | 20.0+ |

### Package Manager

- [apt](https://ubuntu.com/server/docs/package-management) for Ubuntu/WinWSL-Ubuntu

- [Homebrew](https://brew.sh) for mac

#### Required Packages
Expand Down Expand Up @@ -59,10 +57,20 @@ Terminus is published as a package under pantheon-systems/external. To install i
brew install pantheon-systems/external/terminus
```

### Ubuntu / WinWSL+Ubuntu:
### Standalone Terminus PHAR

`*** TBD ***`
The commands below will:

### Other installation methods
- Create a `terminus` folder in your home directory (`~/`)
- Get the latest release tag of Terminus
- Download and save the release as `~/terminus/terminus`
- Make the file executable
- Add a symlink to your local `bin` directory for the Terminus executable

Refer to the [Terminus manual](https://pantheon.io/docs/terminus/install#install-terminus) for other installation methods.
```bash
mkdir -p ~/terminus && cd ~/terminus
curl -L https://github.com/pantheon-systems/terminus/releases/download/3.6.1/terminus.phar --output terminus
chmod +x terminus
./terminus self:update
sudo ln -s ~/terminus/terminus /usr/local/bin/terminus
```

0 comments on commit 908a69a

Please sign in to comment.