I recently got a new MacBook Air M1, but I’m having trouble installing Pandas, since prebuilt binaries are not available for macOS/arm64. How can I install Pandas on an Apple Silicon Mac?
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
venv/lib/python3.8/site-packages/pandas-1.4.0.dev0+264.g9c0a1ebec6-py3.8-macosx-11.4-arm64.egg/pandas/_libs/interval.cpython-38-darwin.so: mach-o, but wrong architecture
–
Recording What works for me:
pip3 install cython
OPENBLAS="$(brew --prefix openblas)" MACOSX_DEPLOYMENT_TARGET=11.1 pip3 install numpy --no-use-pep517
OPENBLAS="$(brew --prefix openblas)" MACOSX_DEPLOYMENT_TARGET=11.1 pip3 install pandas --no-use-pep517
There are two methods to do this. But the underlying process is the same in both.
Method-1
Open a terminal window. Run arch
. The result should be arm64
.
Now do arch -x86_64 zsh
. This will create a x86 emulated zsh session inside the terminal. Now if you run arch
command, the result should be i386
.
Now do pip install pandas
or pip3 install pandas
(whichever command has the correct version). And this will work.
Perform exit
command to exit the emulated zsh session.
You can also execute a single command under x86 emulation without creating an emulated zsh session. Run arch -x86_64 pip install pandas
. This will run pip
command under x86_emulation but the terminal stays in the native arm environment.
Method-2
Open Terminal App using Rosetta 2 which emulates a x86 environment.
Then do pip install pandas
or pip3 install pandas
(whichever command has the correct version)
And that should work.
This trick would work for almost all the python packages that fails to install when tried in ARM architecture
Opening Terminal app using Rosetta 2
- Close the Terminal Application
- Find the Terminal App in Finder (usually located in Macintosh HD/Applications/Utilities)
- Secondary Click the Terminal Icon >> Get Info
- Check the checkbox labeled Open Using Rosetta
- Now launch a Terminal window (The new Terminal window will be opened using Rosetta emulation)
Edit-1: If you install a package under x86 emulation, you have to run your python code also under x86 emulation. If you try to run python in the native ARM environment, then architecture mismatch error will be thrown by the package for which you installed the x86 version.
arch -arm64 pip install pandas
or arch -arm64 pip install -r requirements.txt
or arch -arm64 zsh && poetry install
–
Serpent arch -x86_64 pip3 install pandas
did the trick! –
Achromatize Most of these articles fail to address the issue of 'not' wanting to run under Rosetta. Apple's TensorFlow fork works in native M1 mode, but there is no Pandas to match that. If you choose to run under Rosetta then you won't be able to find a matching TensorFlow. It's a lose lose situation.
conda install
which does seem to work. –
Riptide You can just uset the --no-use-pep517
flag, and you can install pandas with no problems.
Here is how I installed on my laptop:
~/Documents/projects/m-proj
❯ pip install cython --no-use-pep517
Collecting cython
Using cached Cython-0.29.22-py2.py3-none-any.whl (980 kB)
Installing collected packages: cython
Successfully installed cython-0.29.22
~/Documents/projects/m-proj
❯ pip install numpy --no-use-pep517
Collecting numpy
Using cached numpy-1.20.1.zip (7.8 MB)
Using legacy 'setup.py install' for numpy, since package 'wheel' is not installed.
Installing collected packages: numpy
Running setup.py install for numpy ... done
Successfully installed numpy-1.20.1
~/Documents/projects/m-proj
❯ pip install pandas --no-use-pep517
Collecting pandas
Using cached pandas-1.2.3.tar.gz (5.5 MB)
Collecting python-dateutil>=2.7.3
Using cached python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB)
Requirement already satisfied: pytz>=2017.3 in ./venv-trans/lib/python3.9/site-packages (from pandas) (2021.1)
Requirement already satisfied: numpy>=1.16.5 in ./venv-trans/lib/python3.9/site-packages (from pandas) (1.20.1)
Requirement already satisfied: six>=1.5 in ./venv-trans/lib/python3.9/site-packages (from python-dateutil>=2.7.3->pandas) (1.15.0)
Using legacy 'setup.py install' for pandas, since package 'wheel' is not installed.
Installing collected packages: python-dateutil, pandas
Running setup.py install for pandas ... done
Successfully installed pandas-1.2.3 python-dateutil-2.8.1
numpy-1.20.1
but not with numpy-1.20.2
which is required for python3.9. A bit of an impass, that seems super time dependent as right now I can install python3.9 in on M1 (arch arm64) with pyenv, but not python3.8. It would be nice to get python and pandas on arm64. –
Hypertonic Miniconda is by far the simplest option.
brew install --cask miniforge
conda create -n myenv python=3.8
conda init zsh
conda activate
conda install pandas
If you need an older version (not available for arm64 in conda-forge)
brew install --cask miniforge
conda create -n myenv python=3.8
conda init zsh
conda activate
pip install cython
curl -L https://github.com/pandas-dev/pandas/archive/v1.1.2.zip --output pandas.zip
unzip pandas.zip
cd pandas-1.1.2
python3 setup.py install
rm pandas.zip
rm -rf pandas-1.1.2
- Install conda miniforge for OS X arm64(Apple Silicon)
https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh
- Then create virtual environment and install your required package
conda create -n myenv python=3.6 conda activate myenv conda install numpy conda install pandas
Check out this article Apple M1 — Matplotlib, Python, and Jupyter Lab or this one (same author) Apple M1, Python, Pandas, and Homebrew
Maybe you just need run terminal with Rosetta (the second article indicates this)
zsh
in rosetta mode and following the regular installation procedures. The virtual-env approach wasn't still working out for me the –
Jahdai So I found the solution. Apparently even though I checked the box to open the term using Rosetta, it didn't do it the first time. I finally discovered this by executing "arch" on the term, which returned "arm64", not "i386". Rebooting apparently made the "rosetta" selection stick, and I was then able to "pip3 install pandas" successfully. Of course it would have been nicer to install it in native arm mode. Thanks to all for the pointers.
reference this page https://ittone.ma/ittone/python-install-pandas-on-mac-m1-big-sur-into-multiple-virtualenv/
- pip install cython
- git clone https://github.com/numpy/numpy.git
- cd numpy
- python3 setup.py install
- git clone https://github.com/pandas-dev/pandas.git
- cd pandas
- python3 setup.py install
I noticed that many of the users including myself ran into this issue when installing pandas while also using a virtual environment while also on an m1 computer.
The approach that worked for me after the top answer by ropoma failed involved uninstalling pandas, and then ensuring that the pip package manager specified by the (env) is used to install rather than from elsewhere:
pip3 uninstall pandas
python3 -m pip install pandas
I kept running into problems with python on my M1 Mac until I went completely to Rosetta on the command line. For that, I did the following:
- Update Rosetta: In a Terminal type:
softwareupdate --install-rosetta
- In Finder, type ⇧⌘G and go to /Applications/Utilities. Then duplicate Terminal:
- Rename the second Terminal to "Rosetta" (or whatever you like) and have it execute in Rosetta by checking "Open using Rosetta" in the "Get Info" dialogue:
- Open a Rosetta Terminal and make sure it shows
i386
when you issue the commandarch
:
- In that terminal, install homebrew (per the homebrew homepage):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Once homebrew has been installed, install miniconda using homebrew:
brew install --cask miniconda
- Create a conda environment, for instance here a python 3.9 env named
pandas
:
conda create -n pandas python=3.9
- Activate the environment:
conda activate pandas
From here on out, you have a fully functioning i386 Python system. This has resolved all problems that I had with Pandas, Numpy, Azure, etc. on my M1 Mac.
© 2022 - 2024 — McMap. All rights reserved.