Skip to content

Commit cc348db

Browse files
authored
Merge pull request #85 from aminya/wheel [skip ci]
2 parents 6cd5691 + 136dd0b commit cc348db

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/utils/setup/setupPipPack.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ export async function setupPipPack(name: string, version?: string): Promise<Inst
4444
// ensure that pip is installed on Linux (happens when python is found but pip not installed)
4545
setupAptPack("python3-pip")
4646
}
47+
48+
// install wheel (required for Conan, Meson, etc.)
49+
execa.sync(python, ["-m", "pip", "install", "-U", "wheel"], { stdio: "inherit" })
4750
}
4851

4952
execa.sync(python, ["-m", "pip", "install", version !== undefined && version !== "" ? `${name}==${version}` : name], {

0 commit comments

Comments
 (0)