해결 방법


  • Poetry를 사용해서 Prophet 패키지 다운로드
poetry add prophet
  • Prophet의 stan model 바이너리 폴더로 이동
cd .venv/lib/python3.9/site_packages/prophet/stan_model
  • 런타임 라이브러리 경로를 추가하여 MacOS 환경에서도 동작할 수 있도록 수정
install_name_tool -add_rpath @executable_path/cmdstan-2.31.0/stan/lib/stan_math/lib/tbb prophet_model.bin

참고

 

[Python] Error when running fit(): Library not loaded: '@rpath/libtbb.dylib' · Issue #2250 · facebook/prophet

When running Prophet().fit() on a Mac (Monterey 12.5.1, Apple M1 Max Chip), I get the following error message: cmdstanpy - ERROR - Chain [1] error: terminated by signal 6 Unknown error: -6 Tracebac...

github.com