diff --git a/src/mdx/Npx.astro b/src/mdx/Npx.astro
index b77784a8..dcecc1f5 100644
--- a/src/mdx/Npx.astro
+++ b/src/mdx/Npx.astro
@@ -1,7 +1,7 @@
---
const items = ["npm", "yarn", "pnpm", "bun"];
const html = await Astro.slots.render("default");
-const installCommands = ["npx", "yarn", "pnpm", "bun"];
+const installCommands = ["npx", "yarn", "pnpm", "bunx"];
const installLines = html
.replaceAll(/<\/?p>/g, "")
.replaceAll("—", "--")
diff --git a/src/pages/drizzle-studio/overview.mdx b/src/pages/drizzle-studio/overview.mdx
index d9ffa721..2ad01599 100644
--- a/src/pages/drizzle-studio/overview.mdx
+++ b/src/pages/drizzle-studio/overview.mdx
@@ -21,10 +21,10 @@ delete and update everything based on your existing drizzle sql schema. It suppo
#### Install dependencies
Make sure to go through our [get started](/docs/get-started) guides first!
-
+
drizzle-orm
-D drizzle-kit
-
+
#### Prepare your database schema
Check out extended schema declaration **[docs.](/docs/sql-schema-declaration)**
@@ -53,28 +53,9 @@ export default defineConfig({
});
```
#### Launch Drizzle Studio
-
-
-```bash copy
-npx drizzle-kit studio
-```
-
-
-```bash copy
-pnpm drizzle-kit studio
-```
-
-
-```bash copy
-yarn drizzle-kit studio
-```
-
-
-```bash copy
-bunx drizzle-kit studio
-```
-
-
+
+drizzle-kit studio drizzle-orm
+
You can launch studio with `port` cli flag to customise process port and `verbose` flag for extended SQL statements logging
```bash