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 426a7bb commit 2021a1aCopy full SHA for 2021a1a
README.md
@@ -33,7 +33,13 @@ This will install Rustlings and give you access to the `rustlings` command. Run
33
34
## Windows
35
36
-You can run:
+First, set `ExecutionPolicy` to `RemoteSigned`:
37
+
38
+```ps
39
+Set-ExecutionPolicy RemoteSigned
40
+```
41
42
+Then, you can run:
43
44
```ps
45
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
0 commit comments