fix(docs): Added a necessary step to Windows installation process

This commit is contained in:
fmoko 2019-12-22 13:21:24 +01:00 committed by GitHub
commit 3906efcd52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -33,7 +33,13 @@ This will install Rustlings and give you access to the `rustlings` command. Run
## Windows
You can run:
First, set `ExecutionPolicy` to `RemoteSigned`:
```ps
Set-ExecutionPolicy RemoteSigned
```
Then, you can run:
```ps
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