diff --git a/content/100-getting-started/01-quickstart.mdx b/content/100-getting-started/01-quickstart.mdx
index 756063b27b..a9ffa2866b 100644
--- a/content/100-getting-started/01-quickstart.mdx
+++ b/content/100-getting-started/01-quickstart.mdx
@@ -39,6 +39,12 @@ npm install typescript ts-node @types/node --save-dev
This creates a `package.json` with an initial setup for your TypeScript app.
+
+
+See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.
+
+
+
Now, initialize TypeScript:
```terminal
diff --git a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx
index f48b824c4b..ac1c95bff6 100644
--- a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx
+++ b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx
@@ -106,6 +106,12 @@ This creates a `package.json` with an initial setup for a Node.js app.
+
+
+See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.
+
+
+
You can now invoke the Prisma CLI by prefixing it with `npx`:
```terminal
diff --git a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx
index 9c452b3092..bf090ef713 100644
--- a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx
+++ b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx
@@ -88,6 +88,12 @@ You can now invoke the Prisma CLI by prefixing it with `npx`:
npx prisma
```
+
+
+See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager.
+
+
+
Next, set up your Prisma project by creating your [Prisma schema](/concepts/components/prisma-schema) file template with the following command:
```terminal copy