Last active
January 8, 2022 14:13
-
-
Save keithmccammon/5aa831e74abb74922404289d48ed1e29 to your computer and use it in GitHub Desktop.
Installing atomic-operator on an ARM-based (M1) Mac running macOS Monterey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Things that might be required to install atomic-operator on an M1-based Mac running macOS Montery. | |
# | |
# This script assumes: | |
# * Python3.9 or later | |
# * Homebrew 3.3.9 or later | |
git clone https://github.com/swimlane/atomic-operator.git | |
cd atomic-operator | |
# Satisfy ModuleNotFoundError: No module named 'setuptools_rust' | |
brew install rust | |
pip3 install --upgrade pip | |
pip3 install setuptools_rust | |
# Back to our regularly scheduled programming . . . | |
python setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment