Run x86 Terminal Apps (Like Homebrew) on Your New M1 Mac
<p>Here’s what to do while you wait for developers to add native ARM support for the x86 apps you know and love, such as Homebrew (<a href="https://github.com/Homebrew/brew" rel="noopener ugc nofollow" target="_blank">which should be getting support soon</a>).</p>
<h2>Use “arch” to run commands in the native Terminal</h2>
<p>You can run x86 terminal commands with Apple’s Rosetta 2 by adding the following <a href="https://www.unix.com/man-page/osx/1/arch/" rel="noopener ugc nofollow" target="_blank">arch</a> command before it:</p>
<pre>
arch -x86_64 /bin/bash</pre>
<p>So to install Homebrew, run the following:</p>
<pre>
arch -x86_64 /bin/bash -c "$(curl -fsSL <a href="https://raw.githubusercontent.com/Homebrew/install/master/install.sh" rel="noopener ugc nofollow" target="_blank">https://raw.githubusercontent.com/Homebrew/install/master/in...</a>)"</pre>
<p>You can read more about this </p>
<p><a href="https://medium.com/swlh/run-x86-terminal-apps-like-homebrew-on-your-new-m1-mac-73bdc9b0f343"><strong>Visit Now</strong></a></p>