We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d1727 commit cece12eCopy full SHA for cece12e
README.md
@@ -31,6 +31,16 @@ curl -L https://git.io/rustlings | bash -s mypath/
31
32
This will install Rustlings and give you access to the `rustlings` command. Run it to get started!
33
34
+## Windows
35
+
36
+You can run:
37
38
+```ps
39
+Invoke-WebRequest https://git.io/rustlings-win | Select-Object -ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1
40
+```
41
42
+To install Rustlings. Same as on MacOS/Linux, you will have access to the `rustlings` command after it.
43
44
## Manually
45
46
Basically: Clone the repository, checkout to the latest tag, run `cargo install`.
0 commit comments