php artisan migrate 在 Lumen 中给我错误

php artisan migrate giving me error in Lumen

当我尝试在 Lumen 中迁移时,出现以下错误

Connection.php line 664:

  could not find driver (SQL: select * from information_schema.tables where t  
  able_schema = authors and table_name = migrations)                           

Connector.php line 68:

  could not find driver  

我在 ubuntu 16.

上使用 apache2

如果您使用 MySQL 数据库,请确保您的 pdo_mysql php 扩展已启用。

我通过更新 PHP 版本解决了我的问题。 我正在使用 php7.0 。 我将其更新为 php7.2 。 最低流明要求 php7.1 .

我使用了以下命令

sudo apt-get install php7.2-mysql

php artisan cache:clear