mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 14:54:16 +03:00
8418495dbd
This updates the docs to reflect the changes in https://github.com/wez/homebrew-wezterm/pull/2 and updates the automation to use the cask as the template, and to update and commit the task version of the formula. Thanks @laggardkernel! closes: https://github.com/wez/homebrew-wezterm/issues/1 refs: https://github.com/wez/wezterm/issues/501
50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
## Installing on macOS
|
|
|
|
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.
|
|
|
|
Starting with version 20210203-095643-70a364eb, WezTerm is a Universal binary
|
|
with support for both Apple Silicon and Intel hardware.
|
|
|
|
<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)
|
|
|
|
## Homebrew
|
|
|
|
WezTerm is available for [brew](https://brew.sh/) users in a tap:
|
|
|
|
```bash
|
|
$ brew tap wez/wezterm
|
|
$ brew install --cask wezterm --no-quarantine
|
|
```
|
|
|
|
If you'd like to use a nightly build:
|
|
|
|
```bash
|
|
$ brew install --cask wezterm-nightly --no-quarantine
|
|
```
|
|
|
|
to upgrade to a newer nightly, it is simplest to remove then
|
|
install:
|
|
|
|
```bash
|
|
$ brew rm --cask wezterm-nightly
|
|
$ brew upgrade --cask wezterm-nightly
|
|
```
|
|
|
|
## MacPorts
|
|
|
|
WezTerm is also available via [MacPorts](https://ports.macports.org/port/wezterm/summary):
|
|
|
|
```bash
|
|
$ sudo port selfupdate
|
|
$ sudo port install wezterm
|
|
```
|