作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚安装了hidapi在我的 Ubuntu 20.04 中按照说明进行操作,即通过
sudo apt install libhidapi-dev
我在文件
mwe.cpp
中编写了我的程序其中仅包含这一行:
#include <hidapi.h>
现在我想用
g++ -o mwe.o mwe.cpp
但我明白了
mwe.cpp:1:10: fatal error: hidapi.h: No such file or directory
我应该如何使用这个模块?很抱歉这样一个基本问题,但无法找到。
最佳答案
在基于 Ubuntu 的系统上,系统包 libhidapi-dev
将包含文件安装到 /usr/include/hidapi
, 所以要么在你的命令行中包含这个 (-I/usr/include/hidapi
) 要么 #include <hidapi/hidapi.h>
关于c++ - 如何在 Ubuntu 中使用 apt 安装 #include <whatever.h>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70293337/
我是一名优秀的程序员,十分优秀!