diff --git a/frontend/components/dashboard/CliInstallCommands.tsx b/frontend/components/dashboard/CliInstallCommands.tsx index bfc733ba..b28243b8 100644 --- a/frontend/components/dashboard/CliInstallCommands.tsx +++ b/frontend/components/dashboard/CliInstallCommands.tsx @@ -22,7 +22,7 @@ export const CliInstallCommands = () => { styledScript: (
-            scoop scoop bucket add
+            scoop bucket add
             phasehq https://github.com/phasehq/scoop-cli.git
           
@@ -63,22 +63,23 @@ export const CliInstallCommands = () => {
     },
     {
       name: 'Python Pip',
-      rawScript: 'pip install phase',
+      rawScript: 'pip install phase-cli',
       styledScript: (
         
-          pip3 install phase-cli
+          pip install phase-cli
         
), }, { name: 'Alpine Linux', - rawScript: 'apk add --no-cache curl && curl -fsSL https://pkg.phase.dev/install.sh | sh', + rawScript: 'apk update && apk add --no-cache curl bash && curl -fsSL https://pkg.phase.dev/install.sh | bash', styledScript: (
-          apk add --no-cache curl &&
+          apk update &&
+           apk add --no-cache curl bash &&
            curl -fsSL
           https://pkg.phase.dev/install.sh |
-          sh
+           bash
         
), },