2019-06-27 01:58:39 +03:00
|
|
|
|
2019-12-30 10:06:29 +03:00
|
|
|
## Installing on Windows
|
2019-06-23 05:05:19 +03:00
|
|
|
|
2019-06-24 04:12:26 +03:00
|
|
|
Windows 10 or later is required to run WezTerm.
|
2019-06-23 05:05:19 +03:00
|
|
|
|
2019-12-30 07:41:08 +03:00
|
|
|
<a href="{{ windows_stable }}" class="btn">Download for Windows</a>
|
|
|
|
<a href="{{ windows_pre }}" class="btn">Nightly for Windows</a>
|
2019-06-27 01:58:39 +03:00
|
|
|
1. Download <a href="{{ windows_stable }}">Release</a>
|
2019-06-24 04:12:26 +03:00
|
|
|
2. Extract the zipfile and double-click `wezterm.exe` to run the UI
|
|
|
|
3. Configuration instructions can be [found here](configuration.html)
|
|
|
|
|
2019-12-30 10:06:29 +03:00
|
|
|
## Installing on macOS
|
2019-06-24 04:12:26 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2019-12-30 07:41:08 +03:00
|
|
|
<a href="{{ macos_stable }}" class="btn">Download for macOS</a>
|
|
|
|
<a href="{{ macos_pre }}" class="btn">Nightly for macOS</a>
|
2019-06-27 01:58:39 +03:00
|
|
|
1. Download <a href="{{ macos_stable }}">Release</a>
|
2019-06-24 04:12:26 +03:00
|
|
|
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](configuration.html)
|
|
|
|
|
2019-12-30 10:06:29 +03:00
|
|
|
## Installing on Ubuntu
|
2019-06-24 04:12:26 +03:00
|
|
|
|
2019-12-02 02:18:08 +03:00
|
|
|
The CI system builds a `.deb` file on Ubuntu 16.04. It is compatible with other
|
|
|
|
debian style systems, including Debian 9 (Stretch) and later versions.
|
2019-06-24 04:12:26 +03:00
|
|
|
|
2019-12-30 08:24:08 +03:00
|
|
|
<a href="{{ ubuntu_stable }}" class="btn">Download for Ubuntu</a>
|
|
|
|
<a href="{{ ubuntu_pre }}" class="btn">Nightly for Ubuntu</a>
|
2019-12-30 10:06:29 +03:00
|
|
|
|
|
|
|
```bash
|
|
|
|
curl -LO {{ ubuntu_stable }}
|
|
|
|
sudo apt install -y ./{{ ubuntu_stable_asset }}
|
|
|
|
```
|
|
|
|
|
2019-12-02 02:18:08 +03:00
|
|
|
* The package installs `/usr/bin/wezterm` and `/usr/share/applications/wezterm.desktop`
|
2019-12-30 06:32:26 +03:00
|
|
|
* Configuration instructions can be [found here](configuration.html)
|
|
|
|
|
2020-01-08 09:28:43 +03:00
|
|
|
## Installing on Fedora
|
2019-12-30 06:32:26 +03:00
|
|
|
|
|
|
|
The CI system builds an `.rpm` file on Fedora 31.
|
|
|
|
|
2019-12-30 07:41:08 +03:00
|
|
|
<a href="{{ fedora_stable }}" class="btn">Download for Fedora</a>
|
2019-12-30 08:24:08 +03:00
|
|
|
<a href="{{ fedora_pre }}" class="btn">Nightly for Fedora</a>
|
2019-12-30 10:06:29 +03:00
|
|
|
|
|
|
|
```bash
|
2020-01-08 09:28:43 +03:00
|
|
|
sudo dnf install -y {{ fedora_stable }}
|
2019-12-30 10:06:29 +03:00
|
|
|
```
|
|
|
|
|
2019-12-30 06:32:26 +03:00
|
|
|
* The package installs `/usr/bin/wezterm` and `/usr/share/applications/wezterm.desktop`
|
2019-06-24 04:12:26 +03:00
|
|
|
* Configuration instructions can be [found here](configuration.html)
|
|
|
|
|
2019-12-30 07:41:08 +03:00
|
|
|
## Installing from source
|
2019-06-23 05:05:19 +03:00
|
|
|
|
|
|
|
* Install `rustup` to get the `rust` compiler installed on your system.
|
2019-06-24 04:12:26 +03:00
|
|
|
[Install rustup](https://www.rust-lang.org/en-US/install.html)
|
2019-12-02 02:23:08 +03:00
|
|
|
* Rust version 1.39 or later is required
|
2019-06-23 05:05:19 +03:00
|
|
|
* Build in release mode: `cargo build --release`
|
|
|
|
* Run it via either `cargo run --release` or `target/release/wezterm`
|
|
|
|
|
|
|
|
You will need a collection of support libraries; the [`get-deps`](https://github.com/wez/wezterm/blob/master/get-deps) script will
|
|
|
|
attempt to install them for you. If it doesn't know about your system,
|
|
|
|
[please contribute instructions!](https://github.com/wez/wezterm/blob/master/CONTRIBUTING.md)
|
|
|
|
|
2019-12-30 10:06:29 +03:00
|
|
|
If you don't plan to submit a pull request to the wezterm repo, you can
|
|
|
|
download a smaller source tarball using these steps:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s
|
|
|
|
curl -LO {{ source_stable }}
|
|
|
|
tar -xzf {{ source_stable_asset }}
|
|
|
|
cd {{ source_stable_dir }}
|
|
|
|
sudo ./get-deps
|
|
|
|
cargo build --release
|
|
|
|
cargo run --release -- start
|
2019-06-23 05:05:19 +03:00
|
|
|
```
|
|
|
|
|
2019-12-30 10:06:29 +03:00
|
|
|
Alternatively, use the full git repo:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s
|
|
|
|
git clone --depth=1 --branch=master --recursive https://github.com/wez/wezterm.git
|
|
|
|
cd wezterm
|
|
|
|
git submodule update --init --recursive
|
|
|
|
sudo ./get-deps
|
|
|
|
cargo build --release
|
|
|
|
cargo run --release -- start
|
|
|
|
```
|