installation.md

  1# Installing Zed
  2
  3## Download Zed
  4
  5### macOS
  6
  7Get the latest stable builds via [the download page](https://zed.dev/download). If you want to download our preview build, you can find it on its [releases page](https://zed.dev/releases/preview). After the first manual installation, Zed will periodically check for install updates.
  8
  9You can also install Zed stable via Homebrew:
 10
 11```sh
 12brew install --cask zed
 13```
 14
 15As well as Zed preview:
 16
 17```sh
 18brew install --cask zed@preview
 19```
 20
 21### Windows
 22
 23Get the latest stable builds via [the download page](https://zed.dev/download). If you want to download our preview build, you can find it on its [releases page](https://zed.dev/releases/preview). After the first manual installation, Zed will periodically check for install updates.
 24
 25Additionally, you can install Zed using winget:
 26
 27```sh
 28winget install -e --id ZedIndustries.Zed
 29```
 30
 31### Linux
 32
 33For most Linux users, the easiest way to install Zed is through our installation script:
 34
 35```sh
 36curl -f https://zed.dev/install.sh | sh
 37```
 38
 39If you'd like to help us test our new features, you can also install our preview build:
 40
 41```sh
 42curl -f https://zed.dev/install.sh | ZED_CHANNEL=preview sh
 43```
 44
 45This script supports `x86_64` and `AArch64`, as well as common Linux distributions: Ubuntu, Arch, Debian, RedHat, CentOS, Fedora, and more.
 46
 47If Zed is installed using this installation script, it can be uninstalled at any time by running the shell command `zed --uninstall`. The shell will then prompt you whether you'd like to keep your preferences or delete them. After making a choice, you should see a message that Zed was successfully uninstalled.
 48
 49If this script is insufficient for your use case, you run into problems running Zed, or there are errors in uninstalling Zed, please see our [Linux-specific documentation](./linux.md).
 50
 51## System Requirements
 52
 53### macOS
 54
 55Zed supports the follow macOS releases:
 56
 57| Version       | Codename | Apple Status   | Zed Status          |
 58| ------------- | -------- | -------------- | ------------------- |
 59| macOS 26.x    | Tahoe    | Supported      | Supported           |
 60| macOS 15.x    | Sequoia  | Supported      | Supported           |
 61| macOS 14.x    | Sonoma   | Supported      | Supported           |
 62| macOS 13.x    | Ventura  | Supported      | Supported           |
 63| macOS 12.x    | Monterey | EOL 2024-09-16 | Supported           |
 64| macOS 11.x    | Big Sur  | EOL 2023-09-26 | Partially Supported |
 65| macOS 10.15.x | Catalina | EOL 2022-09-12 | Partially Supported |
 66
 67The macOS releases labelled "Partially Supported" (Big Sur and Catalina) do not support screen sharing via Zed Collaboration. These features use the [LiveKit SDK](https://livekit.io) which relies upon [ScreenCaptureKit.framework](https://developer.apple.com/documentation/screencapturekit/) only available on macOS 12 (Monterey) and newer.
 68
 69#### Mac Hardware
 70
 71Zed supports machines with Intel (x86_64) or Apple (aarch64) processors that meet the above macOS requirements:
 72
 73- MacBook Pro (Early 2015 and newer)
 74- MacBook Air (Early 2015 and newer)
 75- MacBook (Early 2016 and newer)
 76- Mac Mini (Late 2014 and newer)
 77- Mac Pro (Late 2013 or newer)
 78- iMac (Late 2015 and newer)
 79- iMac Pro (all models)
 80- Mac Studio (all models)
 81
 82### Linux
 83
 84Zed supports 64-bit Intel/AMD (x86_64) and 64-bit Arm (aarch64) processors.
 85
 86Zed requires a Vulkan 1.3 driver and the following desktop portals:
 87
 88- `org.freedesktop.portal.FileChooser`
 89- `org.freedesktop.portal.OpenURI`
 90- `org.freedesktop.portal.Secret` or `org.freedesktop.Secrets`
 91
 92### Windows
 93
 94Zed supports the following Windows releases:
 95| Version | Zed Status |
 96| ------------------------- | ------------------- |
 97| Windows 11, version 22H2 and later | Supported |
 98| Windows 10, version 1903 and later | Supported |
 99
100A 64-bit operating system is required to run Zed.
101
102#### Windows Hardware
103
104Zed supports machines with x64 (Intel, AMD) or Arm64 (Qualcomm) processors that meet the following requirements:
105
106- Graphics: A GPU that supports DirectX 11 (most PCs from 2012+).
107- Driver: Current NVIDIA/AMD/Intel/Qualcomm driver (not the Microsoft Basic Display Adapter).
108
109### FreeBSD
110
111Not yet available as an official download. Can be built [from source](./development/freebsd.md).
112
113### Web
114
115Not supported at this time. See our [Platform Support issue](https://github.com/zed-industries/zed/issues/5391).