dawnbeen / c_formatter_42

C language formatter for 42 norminette
GNU General Public License v3.0
176 stars 17 forks source link

Cant install on mac os (apple silicone m3) #76

Closed rabouzia closed 6 months ago

rabouzia commented 7 months ago

Screenshot 2024-04-27 at 00 15 54

cacharle commented 6 months ago

This is a new error message from pip, it disallows you from install packages system wide, you have to install them in a virtual environment.

I recommend using pipx for this.

Also the error message literally contains the solutions:

python3 -m venv path/to/venv
source path/to/venv/activate
python3 -m pip install xyz

OR

brew install pipx

Please read the error messages before posting issues

cacharle commented 6 months ago

You will still encounter issues related to apple silicon down the line, see #75