Skip to content

Commit 4dab569

Browse files
committed
Update install-cli.mdx
Added installation via scoop Signed-off-by: Paule Heisster <[email protected]>
1 parent c0006e4 commit 4dab569

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

docs/pages/_partials/install-cli.mdx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ DevSpace is a client-only binary. It is super lightweight, does not require any
1212
{ label: 'brew', value: 'brew', },
1313
{ label: 'Mac', value: 'mac', },
1414
{ label: 'Linux', value: 'linux', },
15-
{ label: 'Windows Powershell', value: 'windows', },
15+
{ label: 'Windows Powershell', value: 'windows-ps', },
16+
{ label: 'Windows Scoop', value: 'windows-scoop', },
1617
]
1718
}>
1819
<TabItem value="npm">
@@ -58,7 +59,7 @@ curl -L -o devspace "https://github.com/loft-sh/devspace/releases/latest/downloa
5859
```
5960

6061
</TabItem>
61-
<TabItem value="windows">
62+
<TabItem value="windows-ps">
6263

6364
```powershell {4}
6465
md -Force "$Env:APPDATA\devspace"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
@@ -67,6 +68,12 @@ $env:Path += ";" + $Env:APPDATA + "\devspace";
6768
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
6869
```
6970

71+
</TabItem>
72+
<TabItem value="windows-scoop">
73+
```powershell {1}
74+
scoop install devspace
75+
```
76+
7077
</TabItem>
7178
</Tabs>
7279

0 commit comments

Comments
 (0)