File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,16 @@ Make sure you have [git](https://git-scm.com/) installed. Then run this command
1919## Windows
2020
21211 . Install [ Git for Windows] ( https://git-scm.com/download/win ) .
22- 2 . Open the ** Git CMD ** app from your Start menu.
22+ 2 . Open ** PowerShell ** from your Start menu.
23233 . Run these commands:
2424
2525``` powershell
26- md "%USERPROFILE%\loda\bin"
27- cd "%USERPROFILE%\loda\bin"
28- curl -fsSLo loda.exe https://github.com/loda-lang/loda-cpp/releases/latest/download/loda-windows-x86.exe
29- loda setup
26+ md "$env:USERPROFILE\loda\bin"
27+ cd "$env:USERPROFILE\loda\bin"
28+ Invoke-WebRequest -Uri https://github.com/loda-lang/loda-cpp/releases/latest/download/loda-windows-x86.zip -OutFile loda.zip
29+ Expand-Archive -Path loda.zip -DestinationPath .
30+ del loda.zip
31+ .\loda setup
3032```
3133
3234## Getting Started
You can’t perform that action at this time.
0 commit comments