当前位置: 首页 > 工具软件 > Rustup > 使用案例 >

Rustup doc 在Apple M1上运行失败

公孙阳羽
2023-12-01

原因是 Apple Silicon 的分支版本不包含文档。

解决方案有两个:

1)下载源码,从源码生成文档:

git clone GitHub - rust-lang/rust: Empowering everyone to build reliable and efficient software.

./x.py doc

2)安装 x86_64 版本,然后打开那个版本的文档:

rustup install stable-x86_64-apple-darwin

rustup +stable-x86_64-apple-darwin doc

 类似资料: