2020-05-30 20:30:32 +03:00
|
|
|
## Installing on macOS
|
|
|
|
|
|
|
|
The CI system builds the package on macOS Mojave (10.14). It may run on earlier
|
|
|
|
versions of macOS, but that has not been tested.
|
|
|
|
|
|
|
|
<a href="{{ macos_zip_stable }}" class="btn">Download for macOS</a>
|
|
|
|
<a href="{{ macos_zip_nightly }}" class="btn">Nightly for macOS</a>
|
|
|
|
1. Download <a href="{{ macos_zip_stable }}">Release</a>
|
|
|
|
2. Extract the zipfile and drag the `WezTerm.app` bundle to your `Applications` folder
|
|
|
|
3. First time around, you may need to right click and select `Open` to allow launching
|
|
|
|
the application that your just downloaded from the internet.
|
|
|
|
3. Subsequently, a simple double-click will launch the UI
|
|
|
|
4. Configuration instructions can be [found here](../config/files.html)
|
|
|
|
|
2020-06-08 00:45:45 +03:00
|
|
|
## Homebrew
|
|
|
|
|
|
|
|
WezTerm is available for [brew](https://brew.sh/) users in a tap:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ brew tap wez/wezterm
|
|
|
|
$ brew install wezterm
|
|
|
|
```
|
2020-05-30 20:30:32 +03:00
|
|
|
|
2020-06-12 07:05:55 +03:00
|
|
|
If you'd like to use a nightly build you can perform a head install:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ brew install --HEAD wezterm
|
|
|
|
```
|
2020-10-31 08:32:59 +03:00
|
|
|
|
|
|
|
to upgrade to a newer nightly, it is simplest to remove then
|
|
|
|
install:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ brew rm wezterm
|
|
|
|
$ brew install --HEAD wezterm
|
|
|
|
```
|