2020-05-30 20:30:32 +03:00
## Installing on macOS
2021-02-03 22:24:41 +03:00
The CI system builds the package on macOS Big Sur and should run on systems as
"old" as Mojave. It may run on earlier versions of macOS, but that has not
been tested.
2020-05-30 20:30:32 +03:00
2021-02-03 22:24:41 +03:00
Starting with version 20210203-095643-70a364eb, WezTerm is a Universal binary
with support for both Apple Silicon and Intel hardware.
2021-01-13 08:12:54 +03:00
2020-05-30 20:30:32 +03:00
< 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
2022-11-19 19:44:28 +03:00
4. To use wezterm binary from a terminal emulator, like `wezterm ls-fonts` you'll need to add the location to the wezterm binary folder that exists _inside_ the WezTerm.app, to your environment's $PATH value. For example, to add it to your `~/.zshrc` file, and assuming your WezTerm.app was installed to `/Applications` , add:
```sh
PATH="$PATH:/Applications/WezTerm.app/Contents/MacOS"
export PATH
```
5. Configuration instructions can be [found here ](../config/files.html )
2020-05-30 20:30:32 +03:00
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
2021-12-08 18:50:04 +03:00
$ brew install --cask wez/wezterm/wezterm
2020-06-08 00:45:45 +03:00
```
2020-05-30 20:30:32 +03:00
2021-05-22 18:30:10 +03:00
If you'd like to use a nightly build:
2020-06-12 07:05:55 +03:00
```bash
2021-12-08 18:50:04 +03:00
$ brew install --cask wez/wezterm/wezterm-nightly
2020-06-12 07:05:55 +03:00
```
2020-10-31 08:32:59 +03:00
2022-01-04 13:59:36 +03:00
to upgrade to a newer nightly (normal `brew upgrade` will not upgrade it!):
2020-10-31 08:32:59 +03:00
```bash
2022-01-04 13:59:36 +03:00
$ brew upgrade --cask wezterm-nightly --no-quarantine --greedy-latest
2020-10-31 08:32:59 +03:00
```
2021-04-07 19:35:52 +03:00
## MacPorts
2021-04-07 20:36:03 +03:00
WezTerm is also available via [MacPorts ](https://ports.macports.org/port/wezterm/summary ):
2021-04-07 19:35:52 +03:00
```bash
$ sudo port selfupdate
$ sudo port install wezterm
```
2022-11-19 19:44:28 +03:00