Hi,
That error means HikaShop's database tables were not created during the installation, so the install could not finish (the config table it needs right after is therefore missing). The component files were copied, but the database step did not complete.
On a fresh install this almost always comes down to one of these, in order of likelihood:
1. Database user privileges. The MySQL user set in your Joomla configuration.php must be allowed to create tables (CREATE, ALTER, INDEX). On some shared or managed hosts the user only has SELECT/INSERT/UPDATE/DELETE, so the CREATE TABLE step fails and no tables are made. Ask your host to grant that database user full privileges on the database, then reinstall.
2. Incomplete or corrupted package. If the upload was truncated (server upload limit) or the download was incomplete, the install SQL gets cut off. Download a fresh copy from your account and install it again.
3. PHP limits. A low max_execution_time or memory_limit can interrupt the install part-way. Make sure max_execution_time is at least 60 and memory_limit at least 128M.
Before retrying, clear the failed attempt first: Extensions > Manage, search for hikashop and uninstall anything left over, so you start from a clean state.