I have a silicon app (not universal) that runs an Intel binary quickly after launch (before loading the UI).
Problem is that users need to have Rosetta 2 installed to run the app because of the Intel binary.
How can I do to display the “Install Rosetta” window at app launch? Because as it’s a Silicon app, macOs won’t show this by default and therefore my users won’t be notified that they need Rosetta 2.
I know I could download it automatically using /usr/sbin/softwareupdate --install-rosetta --agree-to-license
but I would prefer not to use this option
2