配置:警告:*** 请安装 SQLite3 开发包

配置:警告:*** 请安装 SQLite3 开发包

我正在尝试在我的 ubuntu 系统上安装 Asterisk。我已成功下载了 Asterisk 包,当我尝试使用以下方法构建和安装它时

./configure

显示错误

configure: WARNING: *** Asterisk now uses SQLite3 for the internal Asterisk database.
configure: WARNING: *** Please install the SQLite3 development package.

然后我使用以下命令安装了 sqlite

 sudo apt-get install php5-sqlite //also tried the following
 sudo apt-get install sqlite3

安装 sqlite 后,运行时仍然出现同样的错误./configure

 configure: WARNING: *** Asterisk now uses SQLite3 for the internal Asterisk database.
 configure: WARNING: *** Please install the SQLite3 development package.

有谁能帮忙!

谢谢

答案1

经过大量搜索后,我修复了它。使用以下命令

sudo apt-get install libsqlite3-dev

来自论坛。

相关内容