我正在尝试在我的 ubuntu 系统上安装 Asterisk。我已经成功下载了 asterisk 包,当我尝试使用构建和安装它时
./configure
Run Code Online (Sandbox Code Playgroud)
它显示一个错误
configure: WARNING: *** Asterisk now uses SQLite3 for the internal Asterisk database.
configure: WARNING: *** Please install the SQLite3 development package.
Run Code Online (Sandbox Code Playgroud)
然后我使用以下命令安装了 sqlite
sudo apt-get install php5-sqlite //also tried the following
sudo apt-get install sqlite3
Run Code Online (Sandbox Code Playgroud)
安装sqlite后,我在运行时仍然遇到同样的错误 ./configure
configure: WARNING: *** Asterisk now uses SQLite3 for the internal Asterisk database.
configure: WARNING: *** Please install the SQLite3 development package.
Run Code Online (Sandbox Code Playgroud)
任何人都可以帮忙!
谢谢
AVM*_*AVM 18
搜索了很多后,我得到了它的修复。使用以下命令
sudo apt-get install libsqlite3-dev
Run Code Online (Sandbox Code Playgroud)
从这个论坛上得到的。