lemon package 설치 에러
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
lemon
Homebrew’s package index
formulae.brew.sh
내가 설치해야 하는 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
LEMON 1.3.1 Documentation
Introduction LEMON stands for Library for Efficient Modeling and Optimization in Networks. It is a C++ template library providing efficient implementations of common data structures and algorithms with focus on combinatorial optimization tasks connected ma
lemon.cs.elte.hu
http://lemon.cs.elte.hu/trac/lemon/wiki/InstallLinux
InstallLinux – LEMON
Installation Instructions This file contains instructions for building and installing LEMON from source on Linux. The process on other systems (OSX, Windows, etc.) is similar, but Windows-specific instructions can be found here. Note that it is not necessa
lemon.cs.elte.hu