- 目的:希望在获得一个新的系统之后,以最简便快速的方式搭配一个rust的编程环境
-
命令在线安装只执行这句就行了 :
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
,因为是要portable安装所以按照以下的方式执行。
下载
- https://link.zhihu.com/?target=https%3A//static.rust-lang.org/dist/rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz
- source code https://github.com/rust-lang/rust/releases
安装
#!/bin/bash
sudo apt install build-essential
rust_folder="rust-1.68.2-x86_64-unknown-linux-gnu"
if [ -d "$rust_folder" ]; then
echo "rust folder already exists."
else
tar -xzvf rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz
fi
mkdir ./rustlang
./$rust_folder/install.sh --destdir=./rustlang
$ echo 'export PATH="./rustlang/usr/local/bin:$PATH"' >> ~/.bashrc
$ source ~/.bashrc
$ cargo -V
$ rustc -V
相关错误
$ tar -zxvf rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
$ file rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz
rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz: gzip compressed data, original size modulo 2^32 322181574 gzip compressed data, reserved method, has CRC, has comment, encrypted, from FAT filesystem (MS-DOS, OS/2, NT), original size modulo 2^32 322181574
我是用局域网文件传递命令从windows主机的本地复制的,可能传输中出现了问题,导致tar.gz类型有误,重新下载以下就行了
CG
-
一直都在想,不管用谁的电脑,我都可以得到一个完全一致的工作环境,上面有我喜爱的软件,有我保存的重要资料,甚至浏览器的各种偏好都得一模一样!现在的云计算技术可以部分解决这个问题,但是远远不够。我的理想境界是,无论身处何地,一开机,看到的就是自己的电脑,或者相当于自己的电脑!自己可以任意处理自己的数据,不把隐私泄露给别人,当然也不要破坏人家已有的软件环境。
-
https://forum.ubuntu.com.cn/viewtopic.php?t=490830
-
其他安装 Rust 的方法
-
JS NODE.JS 📮 Modern FTP Server
-
JS Deploys a GitHub project to a FTP server using GitHub actions
-
An FTP client module for node.js
-
PY A quick and efficient way of pushing changed files to a website via FTP
-
Python FTP Server & Client, This is FTP server & client, client using PyQt GUI framework
-
Extremely fast and scalable Python FTP server library
-
适用于 VS Code 的超快速 sftp/ftp 扩展
-
FTP client for Rust
-
A mini FTP server and client in Rust
-
C++ aria2 is a lightweight multi-protocol & multi-source, cross platform download utility operated in command-line. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.文章来源:https://www.toymoban.com/news/detail-828108.html
-
[Android] Dumpster_v3.5.382.38f89 Android 4.0.3文章来源地址https://www.toymoban.com/news/detail-828108.html
到了这里,关于linux系统下vscode portable版本的rust环境搭建004:rust的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!