Skip to content

Instantly share code, notes, and snippets.

@coulterpeterson
Created April 5, 2024 21:04
Show Gist options
  • Save coulterpeterson/ea4b46b1fb49f650c5c1764d710f4305 to your computer and use it in GitHub Desktop.
Save coulterpeterson/ea4b46b1fb49f650c5c1764d710f4305 to your computer and use it in GitHub Desktop.
Get Python3 Working with DaVinci Resolve on macOS
# Ensure python3 is install via brew
brew install python
# Check that it's showing up in terminal
which python3
# If there's anything about python already in /usr/local/bin , delete it
sudo rm -rf /usr/local/bin/python3
# Link the new install to that old location
ln -s `which python3` /usr/local/bin/python3
# Restart davinci resolve and python3 should be available
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment