From 1ab5768be8fba88bf05ce3c019c5c2cd43a3459e Mon Sep 17 00:00:00 2001 From: perfiffer Date: Fri, 29 Oct 2021 15:39:36 +0800 Subject: [PATCH] translated by perfiffer --- ...on Ubuntu and Other Linux Distributions.md | 178 ------------------ ...on Ubuntu and Other Linux Distributions.md | 172 +++++++++++++++++ 2 files changed, 172 insertions(+), 178 deletions(-) delete mode 100644 sources/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md create mode 100644 translated/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md diff --git a/sources/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md b/sources/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md deleted file mode 100644 index d2fd95e96b..0000000000 --- a/sources/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md +++ /dev/null @@ -1,178 +0,0 @@ -[#]: subject: "How to Install Rust and Cargo on Ubuntu and Other Linux Distributions" -[#]: via: "https://itsfoss.com/install-rust-cargo-ubuntu-linux/" -[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/" -[#]: collector: "lujun9972" -[#]: translator: "perfiffer" -[#]: reviewer: " " -[#]: publisher: " " -[#]: url: " " - -How to Install Rust and Cargo on Ubuntu and Other Linux Distributions -====== - -_**Brief: Learn various ways of installing Rust programming language on Linux along with its package manager Cargo.**_ - -Ever since Mozilla dumped [Rust][1], it has gained even more prominence and popularity. Don’t just take my words for it. [Rust is going to be included in the Linux kernel][2], only the second programming language after C. - -Many developers have also started making awesome command line based tools in Rust. These tools are often available through the [Cargo package manager][3]. - -This is why it matters to install Rust support in Linux, both for the programmers and the end users. - -Officially, Rust documents suggest installing Rust in Linux by downloading and executing the installer script in this manner: - -``` -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -``` - -That could work. However, your distribution probably already packages Rust. Using your distribution’s [package manager][4] is also an option. - -Let me walk you through the Rust installation steps for both official Rust way and package manager way. - -### Method 1: Installing Rust on any Linux using the official method - -There are a couple of advantages of this method: - - * You get the latest Rust and Cargo version - * Rust is only installed for the current user, not system-wide - * You do not need to be root or have sudo access to install Rust for yourself this way - - - -A few people dislike downloading and [running shell scripts][5] off the internet, even if it is coming from the official sources. However, since it does not need root access and the script is coming from the official sources, it should be safe to install it this way. - -First, make sure that you have Curl installed. Use your distribution’s package manager to install it, if it is not already installed. You can [install Curl on Ubuntu][6] and Debian using the apt command: - -``` -sudo apt install curl -``` - -Next, use this command to download the script and run it: - -``` -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -``` - -![][7] - -It will ask your input for the kind of installation you want. Go with option 1: - -![][8] - -Once the script finishes the installation process, you need to source the configuration file to make the changes available for your shell. - -![][9] - -Source the file: - -``` -source $HOME/.cargo/env -``` - -Once it is done, verify that rust is available for you by checking the installed version: - -``` -rustc --version -``` - -![Verifying Rust installation][10] - -Super cool. If there is a new version of Rust released, you can update the installed one using: - -``` -rustup update -``` - -Let me quickly show how to remove rust installed this way before you see the other installation method. - -#### Removing Rust installed the official way - -In a terminal, use the following command to remove Rust from your system: - -``` -rustup self uninstall -``` - -Press Y when asked and you’ll have Rust removed from the system. - -![Removing Rust from Linux][11] - -That’s settled then. Let’s see how to use the apt command to install Rust on Ubuntu. - -### Method 2: Installing Rust support on Ubuntu using apt - -Why would you want to use the package manager? - - * It installs Rust system wide and thus makes it available for all the users on the system - * It gets updated centrally with other system updates (if your distribution adds a new version of Rust) - - - -There are two main Rust packages available in Ubuntu: - - * rustc: The rust compiler used for Rust programming language - * cargo: Cargo is the Rust package manager and it automatically installs rustc - - - -As a regular user, you would be using Cargo for installing Rust based applications. As a programmer, you’ll need Cargo for getting other Rust packages or create your own. - -Since Cargo includes rustc, I would advise installing it so that all required packages are installed in one go. - -``` -sudo apt install cargo -``` - -You’ll be asked to enter your account’s password. - -![][12] - -You are, of course, free to use `apt install rustc` and install only Rust. That choice lies with you. - -You may verify that Rust is installed for you and all the other users (if you want to): - -![][13] - -That’s good. Let me quickly show the uninstall step as well. - -#### Removing Rust using apt remove - -To remove Rust, you can remove Cargo first and then use the autoremove command to remove the dependencies installed with it. - -``` -sudo apt remove cargo -``` - -Now run the autoremove: - -``` -sudo apt autoremove -``` - -That’s it. You now know all the essentials about installing Rust on Ubuntu and other Linux distributions. Questions and suggestions are always welcome. - --------------------------------------------------------------------------------- - -via: https://itsfoss.com/install-rust-cargo-ubuntu-linux/ - -作者:[Abhishek Prakash][a] -选题:[lujun9972][b] -译者:[译者ID](https://github.com/译者ID) -校对:[校对者ID](https://github.com/校对者ID) - -本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 - -[a]: https://itsfoss.com/author/abhishek/ -[b]: https://github.com/lujun9972 -[1]: https://www.rust-lang.org/ -[2]: https://www.zdnet.com/article/rust-in-the-linux-kernel-why-it-matters-and-whats-happening-next/ -[3]: https://crates.io/ -[4]: https://itsfoss.com/package-manager/ -[5]: https://itsfoss.com/run-shell-script-linux/ -[6]: https://itsfoss.com/install-curl-ubuntu/ -[7]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-1.png?resize=800%2C448&ssl=1 -[8]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-2.png?resize=800%2C448&ssl=1 -[9]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-3.png?resize=800%2C448&ssl=1 -[10]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/10/verify-rust-version.png?resize=800%2C236&ssl=1 -[11]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/remove-rust-linux.png?resize=800%2C378&ssl=1 -[12]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/10/install-rust-using-apt-ubuntu.png?resize=759%2C481&ssl=1 -[13]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/verify-rust-install-ubuntu.png?resize=741%2C329&ssl=1 diff --git a/translated/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md b/translated/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md new file mode 100644 index 0000000000..6af9d40dde --- /dev/null +++ b/translated/tech/20211020 How to Install Rust and Cargo on Ubuntu and Other Linux Distributions.md @@ -0,0 +1,172 @@ +[#]: subject: "How to Install Rust and Cargo on Ubuntu and Other Linux Distributions" +[#]: via: "https://itsfoss.com/install-rust-cargo-ubuntu-linux/" +[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/" +[#]: collector: "lujun9972" +[#]: translator: "perfiffer" +[#]: reviewer: " " +[#]: publisher: " " +[#]: url: " " + +如何在 Ubuntu 和其它的 Linux 发行版安装 `Rust` 和 `Cargo` +====== + +-**简介:了解在 Linux 上安装 Rust 编程语言及其包管理器 Cargo 的各种方法。**— + +自从 Mozilla 贡献了 Rust[1] 语言之后,它就获得了更加突出和受欢迎的地位。不要只相信我的话。 [Rust 将被使用在 Linux 内核中][2],它是继 C 语言之后的第二种编程语言。 + +许多开发人员也开始使用 Rust 语言制作很棒的基于命令行的工具。这些工具通常可以通过 [Cargo 包管理器][3]获得。 + +这就是为什么在 Linux 中安装 Rust 支持对程序员和最终用户都很重要的原因。 + +官方 Rust 文档建议通过以下这种方式下载并执行安装程序脚本在 Linux 中安装 Rust: + +``` +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +``` + +这是可行的。但是,你的发行版可能已经打包了 Rust。使用你的发行版的 [包管理器][4] 也是一种选择。 + +让我向你介绍官方 Rust 方式和包管理器方式的 Rust 安装步骤。 + +### 方法1:使用官方方法在任意的 Linux 上安装 Rust + +这种方法有几个优点: + + * 你可以获取最新的 Rust 和 Cargo 版本 + * Rust 仅仅是为当前的用户安装,并不是所有用户 + * 你并不需要 root 用户或者 sudo 权限就可以为自己安装 Rust + +一些人不喜欢从 Internet 下载和[运行 shell][5] 脚本,即使它来自官方。但是,由于它不需要 root 访问权限并且脚本来自官方,因此以这种方式安装它应该是安全的。 + +首先,确保你已经安装了 `Curl`。如果没安装,使用你的发行版的包管理器安装它。你可以使用 `apt` 命令在 [Ubuntu 和 Debian 上安装 Curl][6]。 + +``` +sudo apt install curl +``` + +接下来,使用这条命令下载脚本并运行它: + +``` +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +``` + +![][7] + +它会询问你输入所需的安装类型。选择选项 1: + +![][8] + +脚本完成安装后,你需要获取配置文件的来源,以使更改应用于你的 shell。 + +![][9] + +应用文件: + +``` +source $HOME/.cargo/env +``` + +完成后,通过检查已安装的版本来验证 Rust 是否可用: + +``` +rustc --version +``` + +![Verifying Rust installation][10] + +太酷了。如果 Rust 发布了新版本,你可以使用如下命令更新已安装的版本: + +``` +rustup update +``` + +在你看到其它安装方法之前,让我快速展示如何移除以这种方式安装的 Rust。 + +#### 删除以官方方式安装的 Rust + +在终端中,使用如下的命令从系统中移除 Rust: + +``` +rustup self uninstall +``` + +询问时按 `Y`,你将从系统中删除 Rust。 + +![Removing Rust from Linux][11] + +官方方式安装已经完成。让我们看看如何使用 `apt` 命令在 Ubuntu 上安装 Rust。 + +### 方法2:使用 apt 命令在 Ubuntu 上安装 Rust + +为什么要使用包管理器? + + * 它在整个系统范围内安装 Rust,可供系统上的所有用户使用 + * 它与其它系统更新一起集中更新(如果你的发行版添加了新版本的 Rust) + +Ubuntu 中有两个主要的 Rust 包: + + * rustc:用于 Rust 编程语言的 Rust 编译器 + * cargo:Cargo是 Rust 的包管理器,它会自动安装 rustc + +作为一个普通用户,你将使用 Cargo 来安装基于 Rust 的应用程序。作为程序员,你需要 Cargo 来获取其它 Rust 包或创建自己的包。 + +由于 Cargo 包含 rustc,我建议安装它,以便一次性安装所有必需的软件包。 + +``` +sudo apt install cargo +``` + +系统会要求你输入账号密码。 + +![][12] + +当然,你可以自由使用 `apt install rustc`,只安装 Rust。这取决于你的选择。 + +你可以验证是否为你和所有其他用户安装了 Rust(如果你愿意): + +![][13] + +很好。让我也快速展示卸载步骤。 + +#### 使用 `apt remove` 移除 Rust + +要移除 Rust,你可以先移除 Cargo,然后使用 autoremove 命令移除随它安装的依赖项。 + +``` +sudo apt remove cargo +``` + +现在运行 autoremove: + +``` +sudo apt autoremove +``` + +就是这样。你现在了解了在 Ubuntu 和其它 Linux 发行版上安装 Rust 的所有基本知识。随时欢迎提出问题和建议。 + +-------------------------------------------------------------------------------- + +via: https://itsfoss.com/install-rust-cargo-ubuntu-linux/ + +作者:[Abhishek Prakash][a] +选题:[lujun9972][b] +译者:[perfiffer](https://github.com/perfiffer) +校对:[校对者ID](https://github.com/校对者ID) + +本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 + +[a]: https://itsfoss.com/author/abhishek/ +[b]: https://github.com/lujun9972 +[1]: https://www.rust-lang.org/ +[2]: https://www.zdnet.com/article/rust-in-the-linux-kernel-why-it-matters-and-whats-happening-next/ +[3]: https://crates.io/ +[4]: https://itsfoss.com/package-manager/ +[5]: https://itsfoss.com/run-shell-script-linux/ +[6]: https://itsfoss.com/install-curl-ubuntu/ +[7]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-1.png?resize=800%2C448&ssl=1 +[8]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-2.png?resize=800%2C448&ssl=1 +[9]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/10/installing-rust-linux-3.png?resize=800%2C448&ssl=1 +[10]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/10/verify-rust-version.png?resize=800%2C236&ssl=1 +[11]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/remove-rust-linux.png?resize=800%2C378&ssl=1 +[12]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/10/install-rust-using-apt-ubuntu.png?resize=759%2C481&ssl=1 +[13]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/10/verify-rust-install-ubuntu.png?resize=741%2C329&ssl=1