반응형
Could NOT find Boost (missing: Boost_INCLUDE_DIR)
별도의 버전 명시가 없어서 brew를 이용하여 설치했다.
brew install boost
만약에 특정 버전(또는 그 이상)을 요구한다면 tar 파일을 다운받아서 직접 설치를 진행하면 된다.
https://www.boost.org/users/download/#live
[예시]
1. Unpack and go into the directory:
tar -xzf boost_1_50_0.tar.gz
cd boost_1_50_0
2. Configure (and build bjam):
./bootstrap.sh --prefix=/some/dir/you/would/like/to/prefix
3. Build:
./b2
4. Install:
./b2 install
[Reference]
https://stackoverflow.com/questions/104322/how-do-you-install-boost-on-macos
반응형
'관심있는 주제 > Error' 카테고리의 다른 글
lemon package 설치 에러 (0) | 2022.02.03 |
---|---|
spdlog install (0) | 2022.02.03 |
Could Not find SWIG (0) | 2022.02.03 |
ModuleNotFoundError: No module named 'torch_scatter' (0) | 2022.01.06 |
conda activate 오류 (0) | 2020.07.20 |