Windows 安装Rust

1. 安装前环境准备

Rust只有编译器没有链接器,还需要C/C++的链接器。Windows上C/C++的编译链有微软提供的Visual Studio的 MSVC和GNU的MinGW
为什么Windows下安装Rust需要C/C++的链接器,应该是需要支持FFI 的原因
由于我的电脑已经安装VS2017,所以无需再安装

没有链接器环境的下载访问:Microsoft C++ 生成工具 - Visual Studio

下载安装

Windows 安装Rust_第1张图片

 

2. 安装

2.1 下载

下载首页:https://www.rust-lang.org/zh-CN/tools/install
下载路径:https://static.rust-lang.org/rustup/dist/i686-pc-windows-msvc/rustup-init.exe
当然,我这里选择下载的是32位的安装程序

Windows 安装Rust_第2张图片

2.2 安装

双击运行下载的exe,如下界面

 Windows 安装Rust_第3张图片

 2.3 安装完成

 Windows 安装Rust_第4张图片

3.验证

以管理员身份重新打开命令行

输入命令

rustc --version

Windows 安装Rust_第5张图片

 

4.Hello World

4.1 新建项目

新建个文件夹,命名为hello_world,然后新建 hello_world.txt文件,在hello_world.txt 里编写代码,保存,最后更改文件扩展名.txt 为 .rsWindows 安装Rust_第6张图片

 

4.2 编译hello_world

在hello_world 文件夹所在路径打开powershell窗口(在hello_world 文件夹空白处 按住Shift 键,然后右键 选择 在此处打开Powershell 窗口)
输入编译命令

rustc .\hello_world.rs

Windows 安装Rust_第7张图片

 4.3 运行hello_world

输入命令

 .\hello_world.exe

Windows 安装Rust_第8张图片

 

你可能感兴趣的:(Rust,rust,windows,C++,生成工具,链接器)