Created
April 5, 2024 21:04
-
-
Save coulterpeterson/ea4b46b1fb49f650c5c1764d710f4305 to your computer and use it in GitHub Desktop.
Get Python3 Working with DaVinci Resolve on macOS
This file contains 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
# 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