blitzwing 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/install.js +5 -0
package/package.json
CHANGED
package/src/install.js
CHANGED
|
@@ -95,6 +95,11 @@ export function ensureVenvAndPetals({ onLog }) {
|
|
|
95
95
|
["install", "torch", "--index-url", "https://download.pytorch.org/whl/cpu"],
|
|
96
96
|
{ stdio: "inherit", env }
|
|
97
97
|
);
|
|
98
|
+
// Needed to compile hivemind protobufs during --no-build-isolation install
|
|
99
|
+
execFileSync(pip, ["install", "grpcio", "grpcio-tools", "protobuf"], {
|
|
100
|
+
stdio: "inherit",
|
|
101
|
+
env,
|
|
102
|
+
});
|
|
98
103
|
// Hivemind first with no build isolation (needs pkg_resources from setuptools<81)
|
|
99
104
|
execFileSync(
|
|
100
105
|
pip,
|