简体   繁体   中英

fatal error: yaml-cpp/yaml.h: No such file or directory

I am trying to compile my own c++/qt5.2 app which uses yaml-cpp under Ubuntu 14.04.

While issuing the make command I get the following error

fatal error: yaml-cpp/yaml.h: No such file or directory

on the line:

#include <yaml-cpp/yaml.h>

How can I fix this?

You need to install the yaml-cpp library .

Under Ubuntu 14.04 you can do this by simply running one of the following commands in a terminal window (depending one the API you use):

sudo apt-get install libyaml-cpp-dev

or

sudo apt-get install libyaml-cpp0.3-dev

See the yaml-cpp project page for other operating systems and differences between old (0.3) and new API.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM