Installing 9.8.0 through nuget can result into a DotNetCompilerPlatform error.
DotNetCompilerPlatform.2.0.1 needs to be downgraded to DotNetCompilerPlatform.2.0.0 in the application file.
Then creating Files directory on wizard fails on Admin\Images\Ribbon\UI\Overlay\Overlay.js
In this file the jquery selector $(this.id + "Message") needs to be replaced by document.getElementById(this.id + "Message") due to no jQuery being available.
var __cancelOverlay = false; function overlay(id) { this.id = id; this.overlay = document.getElementById(this.id); this.hide = function () { this.overlay.style.display = "none"; __cancelOverlay = false; } this.show = function () { if (!__cancelOverlay) { this.overlay.style.display = "block"; } __cancelOverlay = false; } this.message = function (newMessage) { document.getElementById(this.id + "Message").innerHTML = newMessage; } this.hideById = function (elementId) { __cancelOverlay = false; document.getElementById(elementId).style.display = "none"; } } function showOverlay(id) { var w = new overlay(id); w.show(); } function hideOverlay(id) { var w = new overlay(id); w.hide(); }