Skip to content

Commit b2741d0

Browse files
committed
fix: add default python installation path
1 parent 7523d16 commit b2741d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/setup_cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/setup/setupPipPack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function setupPipPack(name: string, version?: string) {
3131
// test if pip executable is working
3232
await execa(pip, ["--version"], { stdio: "inherit" })
3333
} catch (err) {
34-
await setupPython(getVersion("python", undefined), "", process.arch)
34+
await setupPython(getVersion("python", undefined), "~/python", process.arch)
3535
pip = "pip3"
3636
}
3737
}

0 commit comments

Comments
 (0)