Looks like the install has failed for some reason, try running the following three SQL queries manually - replacing ******_db with your table prefix
Code:
CREATE TABLE `******_db.browserosinfo` (
`postid` INT( 6 ) NOT NULL ,
`os` VARCHAR( 20 ) NOT NULL ,
`browser` VARCHAR( 20 ) NOT NULL
) ENGINE = MYISAM ;
Code:
ALTER TABLE `******_db.browserosinfo` ADD PRIMARY KEY ( `postid` )
Code:
ALTER TABLE `******_db.browserosinfo` ADD INDEX ( `postid` )
This really is the last time I check in, good luck getting it working