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
 25### Linux
 26
 27For most Linux users, the easiest way to install Zed is through our installation script:
 28
 29```sh
 30curl -f https://zed.dev/install.sh | sh
 31```
 32
 33If you'd like to help us test our new features, you can also install our preview build:
 34
 35```sh
 36curl -f https://zed.dev/install.sh | ZED_CHANNEL=preview sh
 37```
 38
 39This script supports `x86_64` and `AArch64`, as well as common Linux distributions: Ubuntu, Arch, Debian, RedHat, CentOS, Fedora, and more.
 40
 41If 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.
 42
 43If 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).
 44
 45## System Requirements
 46
 47### macOS
 48
 49Zed supports the follow macOS releases:
 50
 51| Version       | Codename | Apple Status   | Zed Status          |
 52| ------------- | -------- | -------------- | ------------------- |
 53| macOS 15.x    | Sequoia  | Supported      | Supported           |
 54| macOS 14.x    | Sonoma   | Supported      | Supported           |
 55| macOS 13.x    | Ventura  | Supported      | Supported           |
 56| macOS 12.x    | Monterey | EOL 2024-09-16 | Supported           |
 57| macOS 11.x    | Big Sur  | EOL 2023-09-26 | Partially Supported |
 58| macOS 10.15.x | Catalina | EOL 2022-09-12 | Partially Supported |
 59
 60The 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.
 61
 62#### Mac Hardware
 63
 64Zed supports machines with Intel (x86_64) or Apple (aarch64) processors that meet the above macOS requirements:
 65
 66- MacBook Pro (Early 2015 and newer)
 67- MacBook Air (Early 2015 and newer)
 68- MacBook (Early 2016 and newer)
 69- Mac Mini (Late 2014 and newer)
 70- Mac Pro (Late 2013 or newer)
 71- iMac (Late 2015 and newer)
 72- iMac Pro (all models)
 73- Mac Studio (all models)
 74
 75### Linux
 76
 77Zed supports 64bit Intel/AMD (x86_64) and 64Bit ARM (aarch64) processors.
 78
 79Zed requires a Vulkan 1.3 driver, and the following desktop portals:
 80
 81- `org.freedesktop.portal.FileChooser`
 82- `org.freedesktop.portal.OpenURI`
 83- `org.freedesktop.portal.Secret`, or `org.freedesktop.Secrets`
 84
 85### Windows
 86
 87Zed supports the follow Windows releases:
 88| Version | Microsoft Status | Zed Status |
 89| ------------------------- | ------------------ | ------------------- |
 90| Windows 11 (all releases) | Supported | Supported |
 91| Windows 10 (64-bit) | Supported | Supported |
 92
 93#### Windows Hardware
 94
 95Zed supports machines with Intel or AMD 64-bit (x86_64) processors that meet the above Windows requirements:
 96
 97- Windows 11 (64-bit)
 98- Windows 10 (64-bit)
 99- Graphics: A GPU that supports DirectX 11 (most PCs from 2012+).
100- Driver: Current NVIDIA/AMD/Intel driver (not the Microsoft Basic Display Adapter).
101
102### FreeBSD
103
104Not yet available as an official download. Can be built [from source](./development/freebsd.md).
105
106### Web
107
108Not supported at this time. See our [Platform Support issue](https://github.com/zed-industries/zed/issues/5391).