문제해결
fbprophet importing plotly failed. interactive plots will not work.
꼬기를꼬깃꼬깃
2023. 3. 13. 14:39
fbprophet importing plotly failed. interactive plots will not work.
Prophet 실행할 때마다 뜨는 에러
try:
import plotly.graph_objs as go
except ImportError:
logger.error('Importing plotly failed. Interactive plots will not work.')
위 부분에서 plotly가 설치되지 않아서 떴던 것.
pip install plotly
위와 같이 plotly를 설치해 주면 해결됨.
반응형