mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 12:23:46 +03:00
3.1 KiB
3.1 KiB
Installing a pre-built package on Windows
Windows 10 or later is required to run WezTerm.
Download for Windows Nightly for Windows
- Download Release
- Extract the zipfile and double-click
wezterm.exe
to run the UI - Configuration instructions can be found here
Installing a pre-built package 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.
Download for macOS Nightly for macOS
- Download Release
- Extract the zipfile and drag the
WezTerm.app
bundle to yourApplications
folder - First time around, you may need to right click and select
Open
to allow launching the application that your just downloaded from the internet. - Subsequently, a simple double-click will launch the UI
- Configuration instructions can be found here
Installing a pre-built package on Ubuntu
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.
Download for Ubuntu Nightly for Ubuntu
- curl -LO {{ ubuntu_stable }}
sudo apt install -y ./{{ ubuntu_stable_asset }}
- The package installs
/usr/bin/wezterm
and/usr/share/applications/wezterm.desktop
- Configuration instructions can be found here
Installing a pre-built package on Fedora
The CI system builds an .rpm
file on Fedora 31.
Download for Fedora Nightly for Fedora
- curl -LO {{ fedora_stable }}
sudo dnf install -y ./{{ fedora_stable_asset }}
- The package installs
/usr/bin/wezterm
and/usr/share/applications/wezterm.desktop
- Configuration instructions can be found here
Installing from source
- Install
rustup
to get therust
compiler installed on your system. Install rustup - Rust version 1.39 or later is required
- Build in release mode:
cargo build --release
- Run it via either
cargo run --release
ortarget/release/wezterm
You will need a collection of support libraries; the get-deps
script will
attempt to install them for you. If it doesn't know about your system,
please contribute instructions!
$ 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