First post
Hi All,
I've been teaching myself python scripting for Resolve. I'm a colorist, so the things I'm working on are primarily for the media pool and edit page. I've been making a little utility that I run via workflow integrations. My one dilemma is that I can't figure out how to install additional modules I might want to use. I'm on OSX Catalina. Resolve for some reason doesn't recognize my python3 install (if I click on python3 in the console it throws an error), so I assume it's running python...
Last post
So, as I suspected, Resolve is pointing to /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/. I installed that 3.6.8 package, but the console still tells me that 3.6 is not installed when I click on the py3 button. In Terminal, which python3 gets me /Library/Frameworks/Python.framework/Versions/3.6/bin/python3, so my guess is that while Resolve is looking at /System/Library/Frameworks, the installer installs in /Library/Frameworks, and that's the root of the problem. I was...