C++编译报错:fatal error: speex/speex_resampler.h: No such file or directory
2024-07-08
62
问题描述
最近在Ubuntu 16.04中编译一个开源的C++项目时,遇到报错:fatal error: speex/speex_resampler.h: No such file or directory,找了一下原因发现是未安装libspeex-dev libspeexdsp-dev所致,将解决方法记录在这里备忘。
解决方法
执行命令安装libspeex-dev libspeexdsp-dev库即可。
sudo apt install libspeex-dev libspeexdsp-dev
我是Ubuntu环境,其他环境可以类似安装对应的库。
更新于:4个月前赞一波!
相关文章
- PHP 导出 Excel 报错: Formula Error: An unexpected error occurred
- VSCode 插件 Dyno File Utils 脱离鼠标管理文件
- MySQL5.7 中使用 group by 报错 this is incompatible with sql_mode=only_full_group_by
- linux中Qt工程编译报错: error: 找不到 -lGL
- PHP7.4命令行报错:VC运行库和PHP版本不兼容
- 打开vmware虚拟机报错—该虚拟机似乎正在使用中
- 前端请求PHP接口,报错跨域问题
- 如何判断file input的文件来自存储还是相机?
- Apache报错:无法使用可靠的服务器域名
- mysql报错xamp table 'pma__recent' is read only
- 浏览器报错 ERR_SSL_VERSION_OR_CIPHER_MISMATCH
- linux编译报错:/usr/include/c++/7/cstdlib:41:10: fatal error: bits/c++config.h: No such file or directory
- Linux下编译libxml源码时,报错:/usr/include/x86_64-linux-gnu/bits/fcntl2.h:50:4: error: call to '__open...
- Linux下编译libxml2的源码报错:you must specify a host type if you use `--no-verify'
- ENOENT: no such file or directory, lstat 'C:\Users\33612\AppData\Roaming\npm'
- vscode中通过ssh远程连接linux报错:Bad owner or permissions on C:\\Users\\用户名/.ssh/config
- Open SUSE Linux中编译内核模块报错
- Linux编译内核模块时报: linux/scripts/recordmcount: No such file or directory
- EF报错Win32Exception: 证书链是由不受信任的颁发机构颁发的。
- EF Core 8 (EF8) Contains报错:Microsoft.Data.SqlClient.SqlException (0x80131904): 关键字 'WITH' 附近有语法错误。
文章评论
评论问答