curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env
rustc --version
如果显示版本号、提交的 hash 值和提交时间,恭喜你!则 Rust 已成功安装!cargo --version
如果你看到了版本号,一切 OK!-
其他安装信息
Welcome to Rust! This will download and install the official compiler for the Rust programming language, and its package manager, Cargo. # cargo, rustc, rustup 和其他工具会被放到~/.cargo/bin目录下 It will add the cargo, rustc, rustup and other commands to Cargo's bin directory, located at: /Users/micocube/.cargo/bin # 同时会修改bash的profile文件 This path will then be added to your PATH environment variable by modifying the profile files located at: /Users/micocube/.profile /Users/micocube/.bash_profile You can uninstall at any time with rustup self uninstall and these changes will be reverted. Current installation options: default host triple: x86_64-apple-darwin default toolchain: stable modify PATH variable: yes
创建项目
cargo new hello_world --bin
这个命令传递了--bin参数因为我们的目标是直接创建一个可执行程序,而不是一个库。导入到IDE,这里选的是IntelliJ,先安装rust插件,双击
shift
键,输入plugin
-
missing xcrun at:XXXXX
说明你的mac缺少命令行工具,可以选择安装命令行工具或者xcode,下载地址,登陆后下载 卸载命令:
rustup self uninstall
,在安装时有提示该命令
Mac Rust 安装和开发环境搭建
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 文 查理叔叔 如果你还不到20岁,那么有事问百度是基本无害的。如果你超过了20岁或者已经接受过真正的高等教育,那么...
- 构造、执行第一条语句 上一篇完成了代码结构的搭建和 PDO 的基础封装,这一篇我们来讲如何构造一个最基本的 SQL...
- 父母越来越不懂如何去处理家庭情感问题,男人把生活的焦点放在工作上,女人把焦点放在孩子上,都属于焦点错位。 男人往...