Skip to content

Commit 952cd87

Browse files
jazzsequencekporras07jms-pantheonnamespacebrian
authored
Update installation notes in README.md (#2667)
* Back to dev version. (#2652) * SSH verbose mode to match Terminus (#2663) * Only add to backups array if element matches. (#2664) * Update installation notes in README.md 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. --------- Co-authored-by: Kevin Porras <[email protected]> Co-authored-by: Jordan Schulz <[email protected]> Co-authored-by: Brian Weaver <[email protected]>
1 parent a925f18 commit 952cd87

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ Our documentation is kept in the Terminus Manual, located here: https://pantheon
2222
|------------------------|------------|
2323
| MacOS | 10.14+ |
2424
| Ubuntu | Latest LTS |
25-
| Windows + WSL + Ubuntu | TBD |
25+
| Windows + WSL + Ubuntu | 20.0+ |
2626

2727
### Package Manager
2828

29-
- [apt](https://ubuntu.com/server/docs/package-management) for Ubuntu/WinWSL-Ubuntu
30-
3129
- [Homebrew](https://brew.sh) for mac
3230

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

62-
### Ubuntu / WinWSL+Ubuntu:
60+
### Standalone Terminus PHAR
6361

64-
`*** TBD ***`
62+
The commands below will:
6563

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

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

0 commit comments

Comments
 (0)