Skip to content

Commit 4c03042

Browse files
Added instructions to docs for running Wasp on Mac arm64 (install rosetta)
* Add MacOS Rosetta info to docs * remove caution * fix copy * wrap in code box * Update note title Co-authored-by: Martin Šošić <[email protected]> * Add info on Mx chip --------- Co-authored-by: Martin Šošić <[email protected]>
1 parent 3a5bba9 commit 4c03042

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

web/docs/introduction/getting-started.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,15 @@ Open your terminal and run:
107107
curl -sSL https://get.wasp-lang.dev/installer.sh | sh
108108
```
109109

110+
:::note Running Wasp on Mac with Mx chip (arm64)
111+
**Experiencing the 'Bad CPU type in executable' issue on a device with arm64 (Apple Silicon)?**
112+
Given that the wasp binary is built for x86 and not for arm64 (Apple Silicon), you'll need to install [Rosetta on your Mac](https://support.apple.com/en-us/HT211861) if you are using a Mac with Mx (M1, M2, ...). Rosetta is a translation process that enables users to run applications designed for x86 on arm64 (Apple Silicon). To install Rosetta, run the following command in your terminal
113+
```bash
114+
softwareupdate --install-rosetta
115+
```
116+
Once Rosetta is installed, you should be able to run Wasp without any issues.
117+
:::
118+
110119
</TabItem>
111120

112121
<TabItem value='win'>

0 commit comments

Comments
 (0)