Posts

Showing posts with the label M1chip

How to Successfully Run 'pod install' on Your M1 Mac Mini (Sonoma Chip): A Guide for Seamless Integration

Image
  How to Successfully Run 'pod install' on Your M1 Mac Mini (Sonoma Chip): A Guide for Seamless Integration It seems like Homebrew is still not installed on your M1 Mac mini. This might be due to various reasons, such as an incomplete installation or an issue with your system's configuration. Let's try another approach to install Homebrew on your M1 Mac mini: Open your terminal. Run the following command to install the Homebrew: arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh )" brew install ruby-install chruby chruby 3.3.0 gem update --system gem install bundler This command uses Rosetta 2 translation to run the Homebrew installation script in an x86_64 environment, which is necessary because Homebrew hasn't yet been fully optimized for Apple Silicon (ARM) architecture. It ensures compatibility until Homebrew's ARM support is complete. Then You can Follow This Documentation :- - https://mac...