瀏覽代碼

do not use pipenv in build (#159)

Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io>
Fred Lefévère-Laoide 2 年之前
父節點
當前提交
8f45bfdbc1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/scripts/install.js

+ 1 - 1
gui/scripts/install.js

@@ -4,7 +4,7 @@ const { existsSync, writeFileSync, appendFileSync } = require("fs");
 const { sep } = require("path");
 
 const getGuiEnv = () =>
-  execSync(process.platform === "win32" ? 'pipenv run pip show taipy-gui | findStr "Location:"' : "pipenv run pip show taipy-gui | grep Location:", {
+  execSync(process.platform === "win32" ? 'pip show taipy-gui | findStr "Location:"' : "pip show taipy-gui | grep Location:", {
     stdio: ["pipe", "pipe", "pipe"],
   })
     .toString()