Why does zsh kills my process every time I enter a git command

Here I put the final solution. I tried many methods on my mac M1, the best method is re-install homebrew. Step1: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)” Step2: Install homebrew cd /opt mkdir homebrew # if not exist, just create one. curl -L https://github.com/Homebrew/brew/tarball/master | tar xz –strip 1 -C homebrew Then, the problem solved.

Why is numpy native on M1 Max greatly slower than on old Intel i5?

Update Mar 28 2022: Please see @AndrejHribernik’s comment below. How to install numpy on M1 Max, with the most accelerated performance (Apple’s vecLib)? Here’s the answer as of Dec 6 2021. Steps I. Install miniforge So that your Python is run natively on arm64, not translated via Rosseta. Download Miniforge3-MacOSX-arm64.sh, then Run the script, then … Read more

How can I run pyqt5 on my Mac with M1chip (ppc64el architecture)?

After hours of trial and error, I was finally able to solve this. My successful configuration is: Open terminal with Rosetta 2 (https://dev.to/courier/tips-and-tricks-to-setup-your-apple-m1-for-development-547g) Use non-homebrew python (mine was in /usr/bin/python3) to create virtual environment /usr/bin/python3 -m venv env source env/bin/activate Upgrade pip pip install –upgrade pip Install PyQt5 pip install PyQt5

What is the proper way to install TensorFlow on Apple M1 in 2022

Distilling the official directions from Apple (as of 13 July 2022), one would create an environment using the following YAML: tf-metal-arm64.yaml name: tf-metal channels: – apple – conda-forge dependencies: – python=3.9 ## specify desired version – pip – tensorflow-deps ## uncomment for use with Jupyter ## – ipykernel ## PyPI packages – pip: – tensorflow-macos … Read more

Trouble installing Pandas on new MacBook Air M1

Maybe it is too late. But the only solution worked for me is installing from source if you do not want to use rosetta2 or moniconda python3 -m pip install virtualenv virtualenv -p python3.8 venv source venv/bin/activate pip install –upgrade pip pip install numpy cython git clone –depth 1 https://github.com/pandas-dev/pandas.git cd pandas python3 setup.py install