I did a long debug and managed to get the plugin working on macOS.
Specifically in the aceWrapper function the process must be called with
.
In addition you have to set the PATH variable to include
.
In addition you have to refer to Ace with the full path, in my case
Finally you have to enter the arguments not as a list, but as text:
The complete command then becomes:
Code:
process = Popen("PATH=$PATH:/usr/local/bin; "+" ".join(args), stdout=PIPE, stderr=PIPE, shell=True)