编译 Windows 版 Zed 开发工具
2024-09-23 共 2178 字编译 Windows 版 Zed 开发工具
Zed 是一款使用 Rust 语言编写的编辑器,并内置了Rust-analyzer
,主打高性能。
Zed is a next-generation code editor designed for high-performance collaboration with humans and AI.
Fast
Written from scratch in Rust to efficiently leverage multiple CPU cores and your GPU.
Intelligent
Integrate upcoming LLMs into your workflow to generate, transform, and analyze code.
Collaborative
Chat with teammates, write notes together, and share your screen and project. All included.

编译前准备
- 安装 Rust,已安装的需要升级到 1.8
rustup update
- 安装 Rust 工具链
rustup target add wasm32-wasip1
-
下载 Visual Studio (我安装的是 Visual Studio 2022, MSVC 使用 v143 VS 2022 C++ x86_64 build Tools)
-
安装 Windows 11 SDK(我自己使用 Windows 11,所以安装系统对应的 SDK。)
-
安装 CMake
开始编译
进入最新拉取的项目目录(使用 git clone https://github.com/zed-industries/zed.git
拉取), 是可以使用 cargo
编译的:
cargo run --release
经过漫长等待,编译好的文件会保存在 target\build\release
目录下,可直接使用。
编译过程中有些依赖会出现安装失败,多试几次即可。(翻墙也可解决)
库是从官网拉最新的,目前是0.153.6。编译过程干净,不包含任何广告和插件,请放心使用。