diff --git a/website/docs/introduction/installation.md b/website/docs/introduction/installation.md
index ca9c30c60936e..165b38f6f353b 100644
--- a/website/docs/introduction/installation.md
+++ b/website/docs/introduction/installation.md
@@ -6,7 +6,7 @@ import {gitHubRepo, gitHubRepoName, latestReleasePage} from '@site/constants'
import {Command, SLCommand} from '@site/elements'
-import {latestReleaseVersion, macArmAsset, macIntelAsset, ubuntu20, ubuntu22, windowsAsset} from '@site/src/releaseData';
+import {latestReleaseVersion, macArmAsset, ubuntu20, ubuntu22, windowsAsset} from '@site/src/releaseData';
import CodeBlock from '@theme/CodeBlock';
@@ -46,20 +46,6 @@ Then install:
brew install ./{macArmAsset.name}
-##### Intel (x86_64)
-
-Download using `curl`:
-
-
-curl -L -o {macIntelAsset.name} {macIntelAsset.url}
-
-
-Then install:
-
-
-brew install ./{macIntelAsset.name}
-
-
:::caution
Downloading the bottle using a web browser instead of `curl` will cause macOS to tag Sapling as "untrusted" and the security manager will prevent you from running it. You can remove this annotation as follows:
diff --git a/website/src/releaseData.ts b/website/src/releaseData.ts
index d9be855c0a196..25f04b97963fd 100644
--- a/website/src/releaseData.ts
+++ b/website/src/releaseData.ts
@@ -22,8 +22,6 @@ export const latestReleaseVersion = latestReleaseAssets.name;
export const macArmAsset = findAssetWithFilenameSubstr('arm64_ventura.bottle.tar.gz');
-export const macIntelAsset = findAssetWithFilenameSubstr('.monterey.bottle.tar.gz');
-
export const ubuntu20 = findAssetWithFilenameSubstr('Ubuntu20.04.deb');
export const ubuntu22 = findAssetWithFilenameSubstr('Ubuntu22.04.deb');