Skip to content

Instantly share code, notes, and snippets.

@keithmccammon
Last active January 8, 2022 14:13
Show Gist options
  • Save keithmccammon/5aa831e74abb74922404289d48ed1e29 to your computer and use it in GitHub Desktop.
Save keithmccammon/5aa831e74abb74922404289d48ed1e29 to your computer and use it in GitHub Desktop.
Installing atomic-operator on an ARM-based (M1) Mac running macOS Monterey
# 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