实践模式:一行命令安装

目录

  1. 示例
    1. *Nix 下的 Rust 安装
    2. Windows 下的 Scoop

一行命令(1-line script / one line script)安装:

示例

*Nix 下的 Rust 安装

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

要素:

  1. 安装环境检查
    1. 系统环境。如系统架构
    2. endianness 大小端
  2. 执行环境检查
    1. uname 等
  3. 下载器
  4. 验证包
  5. 安装包

Windows 下的 Scoop

Scoop usage:

scoop install curl

安装

Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# or shorter
iwr -useb get.scoop.sh | iex