반응형
brew 로 lemon package 설치를 했음에도 불구하고 계속
Could not find a package configuration file provided by "LEMON"이라고 뜨는 상태
- brew로 설치할 때는 아래 명령어로 설치했고 3.36.0 버전이 설치가 되었다.
brew install lemon
https://formulae.brew.sh/formula/lemon
내가 설치해야 하는 package dependency에는 1.3.1 버전을 설치하라고 해서 다른 방법을 찾아봤다.
1. 맞는 version의 src 다운로드
http://lemon.cs.elte.hu/trac/lemon/wiki/Downloads
or
wget http://lemon.cs.elte.hu/pub/sources/lemon-1.3.1.tar.gz
2. unzip
tar zxvf lemon-1.3.1.tar.gz
3. build 진행
cd lemon-1.3.1
mkdir build
cd build
cmake ..
make
4. install
make install
[Reference]
http://lemon.cs.elte.hu/pub/doc/1.3.1/index.html
http://lemon.cs.elte.hu/trac/lemon/wiki/InstallLinux
반응형
'관심있는 주제 > Error' 카테고리의 다른 글
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. (0) | 2022.02.06 |
---|---|
Could NOT find OpenMP_CXX (0) | 2022.02.04 |
spdlog install (0) | 2022.02.03 |
Could NOT find Boost (0) | 2022.02.03 |
Could Not find SWIG (0) | 2022.02.03 |