This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rustup update | |
| pushd book | |
| git pull | |
| popd | |
| pushd rust | |
| git pull | |
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Uninstall toolchains | |
| rustup toolchain uninstall stable | |
| rustup toolchain uninstall beta | |
| rustup toolchain uninstall nightly | |
| REM Set nightly as default and install default profile with rust-src | |
| rustup set profile default | |
| rustup toolchain install nightly | |
| rustup default nightly | |
| rustup component add rust-src |