Posts

WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. FOR MACBOOK m series, m1,m2,m3

 WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. Consider adding the following to ~/.profile: export LANG=en_US.UTF-8 here is the solution  1. **Edit Locale Configuration**:    Open the locale configuration file:    ```sh    sudo nano /etc/locale.conf    ```    Add the following lines to set the locale:    ```sh    LANG=en_US.UTF-8    LC_COLLATE=en_US.UTF-8    LC_CTYPE=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8    LC_MONETARY=en_US.UTF-8    LC_NUMERIC=en_US.UTF-8    LC_TIME=en_US.UTF-8    LC_ALL=en_US.UTF-8    ```    Save and exit the file (Ctrl + O, Enter, Ctrl + X). 2. **Generate Locale**:    Ensure the `en_US.UTF-8` locale is generated:    ```sh    sudo locale-gen en_US.UTF-8    sudo dpkg-reconfigure locales    ``` 3. **Add Locale to...