[SOLVED] Install Meteor New Processor Mac

Hi,
I bought recently the new Mac mini with the Processor from Apple M1.
When I tried to install meteor I get this issue :
“Only 64-bit Intel processors are supported at this time.”

Update of meteor for this soon ?
Have you an idea to install it with this processor ?

Thank you !

2 Likes

@janmp Can Help I think

6 Likes

Thank you ! Work great !

Just wanted to post another option here. I use JetBrains and was having trouble starting Meteor on my new M1 MacBook Air. Couldn’t find how/where to specify necessary “arch -x86_64” to get it to use the correct architecture. The solution I found was to specify the architecture in /usr/local/bin/meteor
Changed the first line from
#!/usr/bin/env bash
to
#!/usr/bin/env arch -x86_64 /bin/bash

This should also make the meteor command work from any terminal window.

15 Likes

This is the simples way.

2 Likes

You can also use docker.
I used GitHub - golden-garage/meteor-dev: A Dockerfile for building a Meteor container that can be used for devel
It’s an old package but the instructions work

1 Like