Fixed it just for myself this way:
in setup/index.php line 190 where is
$preferences = array('mysqli'=>1,'pdo_mysql'=>2,'mysql'=>3);
I switched the 1st and 3rd, so this line became
$preferences = array('mysql'=>1,'pdo_mysql'=>2,'mysqli'=>3);
EDIT: just after posting this I saw your reply. But I hope my post about occasional success is useful as well