How to Install

Installation instructions are below. Editor integration is covered in the quick start section.

Using Homebrew (macOS/Linux)

The easiest way to install IWE on macOS or Linux is using Homebrew:

brew tap iwe-org/iwe
brew install iwe

This installs both the CLI (iwe) and the LSP server (iwes).

From Crates.IO

  • Rust and Cargo must be installed on your system. You can get them from rustup.rs.

IWE is available at crates.io. You can install IWE using cargo (and iwes for LSP server)

cargo install iwe
cargo install iwes

The binaries will be installed to $HOME/.cargo/bin. You may need to add it to your $PATH.

From Source

Clone the repository, navigate into the project directory, and build the project:

git clone git@github.com:iwe-org/iwe.git
cd iwe
cargo build --release

This will create executables located in the target/release directory.