Skip to content

Commit 74aace6

Browse files
authored
Fix install not finding zstd (#7838)
Fix install Installation apparently couldn't find buck from a clean checkout. (I'm not sure how it managed to work for anybody, actually.) Fixes #7711. Test Plan: ./install_executorch.sh --clean rm -rf buck2-bin buck-out ./install_executorch.sh --pybind xnnpack
1 parent 6fe6870 commit 74aace6

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

install_requirements.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ def install_requirements(use_pytorch_nightly):
102102
"install",
103103
"-r",
104104
"requirements-examples.txt",
105+
"-r",
106+
"requirements-dev.txt",
105107
*REQUIREMENTS_TO_INSTALL,
106108
"--extra-index-url",
107109
TORCH_NIGHTLY_URL,

requirements-dev.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake # For building binary targets in the wheel.
2+
pip>=23 # For building the pip package.
3+
pyyaml # Imported by the kernel codegen tools.
4+
setuptools>=63 # For building the pip package contents.
5+
tomli # Imported by extract_sources.py when using python < 3.11.
6+
wheel # For building the pip package archive.
7+
zstd # Imported by resolve_buck.py.

0 commit comments

Comments
 (0)