I want to install Flutter without third party software like Rosetta, Homebrew. Reason behind that is I don't want to use that type of third party which affected to the core system of MACBOOK M1 chipset.
Asked
Active
Viewed 30 times
0
-
FYI Rosetta is not third-party software. – Siguza Aug 30 '23 at 13:03
1 Answers
0
You do not need Rosetta to install Flutter, but you need it to use Flutter with full functionality. You can use git(which comes with Xcode) to clone Flutter repository on your machine. Check out the official documentation.
As for the Rosetta, it is still necessary, several of the binaries shipped in the SDK are still x64, like the one that proxies iOS to macOS ports, as well as the gen_snapshot that creates the x64 macOS app release binaries on M1 so users on Intel Macs can install your app.
The most important binaries like dart, macOS and iOS simulator Flutter frameworks are running natively as arm64 though.

Soliev
- 1,180
- 1
- 1
- 12