离线状态下使用Rust
- 了解平台架构后,获取对应平台的Rust 独立安装包, 并上传至电脑。此处以
x86_64
架构为例:
$ wget https://static.rust-lang.org/dist/rust-1.70.0-x86_64-pc-windows-gnu.msi
OR
$ wget https://static.rust-lang.org/dist/rust-1.70.0-x86_64-pc-windows-msvc.msi
$ wget https://static.rust-lang.org/dist/rust-1.70.0-x86_64-unknown-linux-gnu.tar.gz
- 解压安装压缩包:
tar -zxvf rust-1.44.0-x86_64-unknown-linux-gnu.tar.gz
- 切换到解压缩目录,并执行安装命令:
cd rust-1.44.0-x86_64-unknown-linux-gnu
./install.sh --prefix=~/rust --disable-ldconfig --verbose
此命令会将 Rust 安装在 ~/rust
文件夹中,rust 的 可执行文件将会放在 ~/rust/bin
文件夹中。
4. 编辑~/.bashrc
, 增加下面这一行配置:
export PATH=$HOME/rust/bin:$PATH
- 使
~/.bashrc
生效:
source ~/.bashrc
- 检查 Rust 是否成功安装:
cargo --version
cargo 1.70.0 (05d080faa 2023-05-06)
[离线安装 rust-overlaps
]
- 在本地联网环境拷贝源代码:
git clone https://github.com/sirkibsirkib/rust-overlaps.git
- 修复源码的
Cargo.toml
的version
[2]:
version = "1.1.0"
- 在代码仓库目录下执行
cargo vendor
,获取依赖的源码[3]:
rust-overlaps$ cargo vendor --respect-source-config
下载好的依赖将会存放到 vendor
文件夹中。
4. 在 rust-overlaps
文件夹中添加 .cargo/config
文件,以便在超算的离线环境中使用本地缓存好的依赖源码进行编译:
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"
- 将源码文件夹打包成
.zip
包,然后上传到电脑: - 在超算中解压:
unzip rust-overlaps.zip
- 离线安装[3]:
cd rust-overlaps
cargo install --path . --offline
- 检查是否安装成功:
rust-overlaps --version
ASPOPsolver 1.0