Databricks에서 R Prophet을 설치할 때의 오류 및 대책
1915 단어 RDatabricksprophet
현상
Databricks 클러스터 라이브러리로 prophet을 설치하려고 하면 다음 오류로 설치할 수 없습니다.
java.lang.RuntimeException: Installation failed with message:
Error installing R package: Could not install package with error: installation of package 'V8' had non-zero exit status
installation of package 'rstan' had non-zero exit status
installation of package 'prophet' had non-zero exit status
Full error log available at /databricks/driver/library-install-logs/r-package-installation-2021-05-12T09:28:44Z-ue08v7_4.log
해결책
클러스터의 init 스크립트에서 V8을 설치합니다. 그런 다음 Prophet을 클러스터 라이브러리로 설치합니다.
파이썬
R 노트북에서 Python을 실행하고 있으므로 %python
매직 명령을 지정합니다.
%python
dbutils.fs.put("/databricks/scripts/v8-install.sh","""
sudo apt-get install -y libv8-dev""", True)
init script를 클러스터로 설정합니다.
클러스터 라이브러리로 Prophet을 설치합니다.
Databricks 무료 평가판
Databricks 무료 평가판
Reference
이 문제에 관하여(Databricks에서 R Prophet을 설치할 때의 오류 및 대책), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/taka_yayoi/items/d80ae8ee36a08d60c0bf
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
java.lang.RuntimeException: Installation failed with message:
Error installing R package: Could not install package with error: installation of package 'V8' had non-zero exit status
installation of package 'rstan' had non-zero exit status
installation of package 'prophet' had non-zero exit status
Full error log available at /databricks/driver/library-install-logs/r-package-installation-2021-05-12T09:28:44Z-ue08v7_4.log
클러스터의 init 스크립트에서 V8을 설치합니다. 그런 다음 Prophet을 클러스터 라이브러리로 설치합니다.
파이썬
R 노트북에서 Python을 실행하고 있으므로
%python
매직 명령을 지정합니다.%python
dbutils.fs.put("/databricks/scripts/v8-install.sh","""
sudo apt-get install -y libv8-dev""", True)
init script를 클러스터로 설정합니다.
클러스터 라이브러리로 Prophet을 설치합니다.
Databricks 무료 평가판
Databricks 무료 평가판
Reference
이 문제에 관하여(Databricks에서 R Prophet을 설치할 때의 오류 및 대책), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/taka_yayoi/items/d80ae8ee36a08d60c0bf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)