Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pip install fbprophet on Windows without conda

I would like to install fbprophet on windows 10 without having to install Anaconda. I have python 3.7. I have tried all suggestions from Installing fbprophet Python on Windows 10 without success.

So far I have installed pystan, as it is required before installing fbprophet, but when I run pip install fbprophet, I am getting a lot of red output, with the following errors:

Building wheels for collected packages: fbprophet
Building wheel for fbprophet (setup.py) ... error
...
...
...
ImportError: DLL load failed: Specified module not found.
----------------------------------------
ERROR: Failed building wheel for fbprophet

Any help appreciated.

like image 218
Sura-da Avatar asked Dec 19 '20 17:12

Sura-da


People also ask

How do I install Fbprophet on Windows 10?

First install Anaconda or miniconda in your Windows machine and add conda python path to env variable as default python. 2. Open your command prompt and run following commands. libpython will automatically create and setup distutils.

Is prophet the same as Fbprophet?

It's by the same devs. Seems it was just a name change. Prophet is on PyPI, so you can use pip to install it.

How do I install prophet library?

Installing the Prophet dependencies As the official documentation says, the major dependency that the Prophet has is pystan. PyStan has its own installation instructions. Install pystan with pip before using pip to install prophet. With PyStan and its dependencies installed on your system, you need to install Prophet.

How do I install Fbprophet on Ubuntu?

FROM python:3.7-stretch RUN apt-get -y install libc-dev RUN pip install pip==19.1. 1 COPY python/requirements. txt . RUN pip install -r requirements.


1 Answers

fbprophet backned is pystan. it seems pystan is not installed in your environment.you can verify it using: import pystan in your python environment

like image 200
amit Avatar answered Oct 25 '22 04:10

amit