I've hit this as well and have done some debugging and wanted to share my solution. Starting from the start.
The error in the log is saying the the execution of WwiseSetupWizard.RunSetup is failing because it doesn't exist. Quickly looking at the script, it's there, so I poked further by launching Unity.
First, it seems the x86 dlls are set to load on both x86 and x86_64 which is causing conflicts. I manually fixed those. The majority of the errors in the console went away after this.
After that, it seems that Unity deprecated the UnityEditor.Build.IPreprocessBuild and UnityEditor.Build.IPostprocessBuild interfaces for the UnityEditor.Build.IPreprocessBuildWithReport and UnityEditor.Build.IPostprocessBuildWithReport interfaces. I manually swapped those in the AkBuilPreprocessor and restarted Unity just to be safe and it seems to launch with not errors. The methods did not need to be edited which is nice.
RunSetup still hasn't been executed though, so I quickly whipped together a script to add a menu option to manually run it. You'll know it works when Unity turns off (it's the last line of the wwise script, comment it out if you like).
After relaunching everything looks good? I will post again if something is broken but I have my fingers crossed I won't need to come back. Hopefully this helps some people while wwise updates the integration tools.