We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2601b2a commit e0f66d0Copy full SHA for e0f66d0
install_requirements.py
@@ -63,6 +63,14 @@ def python_is_compatible():
63
64
65
def install_requirements():
66
+ # Error out on Intel macOS.
67
+ if is_intel_mac_os():
68
+ print(
69
+ "ERROR: Prebuilt PyTorch wheels are no longer available for Intel-based macOS.\n"
70
+ "Please build from source by following https://docs.pytorch.org/executorch/main/using-executorch-building-from-source.html",
71
+ file=sys.stderr,
72
+ )
73
+ sys.exit(1)
74
75
# pip packages needed by exir.
76
TORCH_PACKAGE = [
0 commit comments