Installing fbprophet Python on Windows 10 - Stack Overflow
https://stackoverflow.com/questions/53178281/installing-fbprophet-python-on-windows-10
First install Anaconda or miniconda in your Windows machine and add conda python path to env variable as default python. Open your command prompt and run following commands. Create a conda virtual environment (optional) conda create -n v-env python=3.7 activate v-env. Install c++ complier conda install libpython m2w64-toolchain -c msys2. Install dependencies. Install PyStan pip install pystan or conda install pystan -c conda-forge. Install Ephem conda install -c anaconda ephem. Install fbprophet.
First install Anaconda or miniconda in your Windows machine and add conda python path to env variable as default python.
Open your command prompt and run following commands.
Create a conda virtual environment (optional) conda create -n v-env python=3.7 activate v-env.
Install c++ complier conda install libpython m2w64-toolchain -c msys2.
Install dependencies.
Install PyStan pip install pystan or conda install pystan -c conda-forge.
Install Ephem conda install -c anaconda ephem.
Install fbprophet.
DA: 22 PA: 14 MOZ Rank: 79