File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,15 +170,15 @@ def install_optional_example_requirements(use_pytorch_nightly):
170170# Prebuilt binaries for Intel-based macOS are no longer available on PyPI; users must compile from source.
171171# PyTorch stopped building macOS x86_64 binaries since version 2.3.0 (January 2024).
172172def is_intel_mac_os ():
173- # Returns True if running on Intel-based macOS
173+ # Returns True if running on Intel macOS
174174 if platform .system ().lower () == "darwin" and platform .machine ().lower () in (
175175 "x86" ,
176176 "x86_64" ,
177177 "i386" ,
178178 ):
179179 print (
180- "ERROR: Prebuilt PyTorch binaries are no longer available for Intel-based macOS.\n "
181- "Please compile from source by following https://pytorch.org/executorch/0.6 /using-executorch-building-from-source.html" ,
180+ "ERROR: Prebuilt PyTorch wheels are no longer available for Intel-based macOS.\n "
181+ "Please build from source by following https://docs. pytorch.org/executorch/main /using-executorch-building-from-source.html" ,
182182 file = sys .stderr ,
183183 )
184184 return True
You can’t perform that action at this time.
0 commit comments