I want to install the package fbprophet
(it may now also be known as prophet
). I tried importing both like so (not all at once):
import fbprophet
import prophet
from fbprophet import Prophet
from prophet import Prophet
Error I receive is as follows:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_5908/2493871459.py in <module>
----> 1 from prophet import Prophet
ModuleNotFoundError: No module named 'prophet'
I have already gone through all the other questions asking the same problem, yet those solutions didn't work for me. I also tried changing python version to 3.7 when installing it in a new env for testing purposes.
installing prophet in jupyter nb