Setup a local rustup mirror. For usage, please run rustup-mirror -h
.
Run cargo install rustup-mirror
.
- Check if file is already downloaded and check its integrity by comparing sha256 checksum.
- Download and replace links in the manifest files.
$ rustup-mirror # use HTTPS_PROXY for proxy
$ # wait for downloading
$ cd ./mirror # default directory, see rustup-mirror -h
$ python3 -m http.server &
$ RUSTUP_DIST_SERVER=http://127.0.0.1:8000 rustup install stable
Note:
- A full clone of a stable distribution takes 16G disk space (as of Feb 2019).
- Python3 http.server module does not support Range download. It may fail when a partial downloaded file exists. Do not use this in production.