From 360248427bb5c43d7a5b34dbc97896f64afa0e82 Mon Sep 17 00:00:00 2001 From: Nimish <85357445+nimish-ks@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:26:02 +0530 Subject: [PATCH] fix: CLI install instructions (#406) * fix: python pip install * feat: updated alpine linux install docs * fix: scoop install command --- .../components/dashboard/CliInstallCommands.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/frontend/components/dashboard/CliInstallCommands.tsx b/frontend/components/dashboard/CliInstallCommands.tsx index bfc733bae..b28243b8f 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
         
), },