Hi,
In order to use unsigned software in macOS Catalina, the best available option is to run a xattr
command in Terminal, and use the -d
option to remove com.apple.quarantine
as an (extended) attribute.
Here is the command line: xattr -d com.apple.quarantine **filepath**
You can also add the -r
option to run the xattr
command on a folder or bundle.
Here is the command line: xattr -d -r com.apple.quarantine **filepath**
In the command lines sketched above, you should replace **filepath**
with the filepath of the file or folder/bundle of unsigned software, respectively. And you’re set.
Hope this helps.
All the best,
António
PS: This post is derived, and has been adapted, from Ben Bracken’s post at the C74 forum, here.