File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
- b556d31586845fb1e296a975d2b85d9d325205c9
1
+ c42ac54d9e817bf0a0366eb78e6c8beba4d5eff5
Original file line number Diff line number Diff line change @@ -19,11 +19,9 @@ retry () {
19
19
install_executorch () {
20
20
which pip
21
21
# Install executorch, this assumes that Executorch is checked out in the
22
- # current directory. The --extra-index-url options tell pip to look on the
23
- # pytorch servers for nightly and pre-release versions of torch packages.
24
- pip install . --no-build-isolation -v \
25
- --extra-index-url https://download.pytorch.org/whl/test/cpu \
26
- --extra-index-url https://download.pytorch.org/whl/nightly/cpu
22
+ # current directory.
23
+ # TODO(T199538337): clean up install scripts to use install_requirements.sh
24
+ ./install_requirements.sh --pybind xnnpack
27
25
# Just print out the list of packages for debugging
28
26
pip list
29
27
}
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ def python_is_compatible():
89
89
# NOTE: If a newly-fetched version of the executorch repo changes the value of
90
90
# NIGHTLY_VERSION, you should re-run this script to install the necessary
91
91
# package versions.
92
- NIGHTLY_VERSION = "dev20240716 "
92
+ NIGHTLY_VERSION = "dev20240821 "
93
93
94
94
# The pip repository that hosts nightly torch packages.
95
95
TORCH_NIGHTLY_URL = "https://download.pytorch.org/whl/nightly/cpu"
You can’t perform that action at this time.
0 commit comments