良许Linux教程网 干货合集 Linux系统安装Rust 语言

Linux系统安装Rust 语言

Rust 速度惊人且内存利用率极高。由于没有运行时和垃圾回收,它能够胜任对性能要求特别高的服务,可以在嵌入式设备上运行,还能轻松和其他语言集成。下面良许教程网为大家分享一下Linux系统中安装Rust 语言的具体步骤。

u=532519437,4078738071&fm=26&gp=0

Rust 语言简介:

  • Rust 语言是一种高效、可靠的通用高级语言。

  • 其高效不仅限于开发效率,它的执行效率也是令人称赞的,是一种少有的兼顾开发效率和执行效率的语言。

  • Rust 语言由 Mozilla 开发,最早发布于 2014 年 9 月。

  • Rust 的编译器是在 MIT License 和 Apache License 2.0 双重协议声明下的免费开源软件。

Linux 中安装 Rust 语言具体步骤:

我们可以通过多种方式安装 Rust,但以下是官方推荐的安装方式。

 $ curl https://sh.rustup.rs -sSf | sh
 info: downloading installer
 
 Welcome to Rust!
 
 This will download and install the official compiler for the Rust programming
 language, and its package manager, Cargo.
 
 It will add the cargo, rustc, rustup and other commands to Cargo's bin
 directory, located at:
 
   /home/daygeek/.cargo/bin
 
 This path will then be added to your PATH environment variable by modifying the
 profile files located at:
 
   /home/daygeek/.profile
   /home/daygeek/.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-unknown-linux-gnu
      default toolchain: stable
   modify PATH variable: yes
 
 1) Proceed with installation (default)
 2) Customize installation
 3) Cancel installation
 >1
 
 info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
 info: latest update on 2018-12-06, rust version 1.31.0 (abe02cefd 2018-12-04)
 info: downloading component 'rustc'
  77.7 MiB /  77.7 MiB (100 %)   1.2 MiB/s ETA:   0 s                
 info: downloading component 'rust-std'
  54.2 MiB /  54.2 MiB (100 %)   1.2 MiB/s ETA:   0 s                
 info: downloading component 'cargo'
   4.7 MiB /   4.7 MiB (100 %)   1.2 MiB/s ETA:   0 s                
 info: downloading component 'rust-docs'
   8.5 MiB /   8.5 MiB (100 %)   1.2 MiB/s ETA:   0 s                
 info: installing component 'rustc'
 info: installing component 'rust-std'
 info: installing component 'cargo'
 info: installing component 'rust-docs'
 info: default toolchain set to 'stable'
 
   stable installed - rustc 1.31.0 (abe02cefd 2018-12-04)
 
 
 Rust is installed now. Great!
 
 To get started you need Cargo's bin directory ($HOME/.cargo/bin) in your PATH
 environment variable. Next time you log in this will be done automatically.
 
 To configure your current shell run source $HOME/.cargo/env

运行以下命令配置当前 shell。

 $ source $HOME/.cargo/env

运行以下命令验证已安装的 Rust 版本。

 $ rustc --version
 rustc 1.31.0 (abe02cefd 2018-12-04)

如何测试 Rust 编程语言?

安装 Rust 后,请按照以下步骤检查 Rust 语言是否正常工作。

 $ mkdir ~/projects
 $ cd ~/projects
 $ mkdir hello_world
 $ cd hello_world

创建一个文件并添加以下代码并保存。确保 Rust 文件始终以 .rs 扩展名结尾。

 $ vi 2g.rs
 
 fn main() {
  println!("Hello, It's 2DayGeek.com - Best Linux Practical Blog!");
 }

运行以下命令编译 rust 代码。

 $ rustc 2g.rs

上面的命令将在同一目录中创建一个可执行的 Rust 程序。

 $ ls -lh
 total 3.9M
 -rwxr-xr-x 1 daygeek daygeek 3.9M Dec 14 11:09 2g
 -rw-r--r-- 1 daygeek daygeek 86 Dec 14 11:09 2g.rs

运行 Rust 可执行文件得到输出。

 $ ./2g
 Hello, It's 2DayGeek.com - Best Linux Practical Blog!

好了!正常工作了。

将 Rust 更新到最新版本。

 $ rustup update
 info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
 info: checking for self-updates
 
   stable-x86_64-unknown-linux-gnu unchanged - rustc 1.31.0 (abe02cefd 2018-12-04)

运行以下命令从系统中删除 Rust 包。

 $ rustup self uninstall

卸载 Rust 包后,删除 Rust 项目目录。

 $ rm -fr ~/projects

至此关于Linux系统中安装Rust语言的教程分享结束,大家有任何问题都可以通过评论区将问题提交给我们。

以上就是良许教程网为各位朋友分享的Linux系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你!

137e00002230ad9f26e78-265x300

本文由 良许Linux教程网 发布,可自由转载、引用,但需署名作者且注明文章出处。如转载至微信公众号,请在文末添加作者公众号二维码。
良许

作者: 良许

良许,世界500强企业Linux开发工程师,公众号【良许Linux】的作者,全网拥有超30W粉丝。个人标签:创业者,CSDN学院讲师,副业达人,流量玩家,摄影爱好者。
上一篇
下一篇

发表评论

联系我们

联系我们

公众号:良许Linux

在线咨询: QQ交谈

邮箱: yychuyu@163.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部