WINDOWS系统下python安装fbprophet

python版本:python3.7.9

系统:WIN7 64位

遇到的坑:

1:import pystan._api failed:ImportError: DLL load failed: The specified module could not be found

2:ERROR: Cannot determine archive format of C *******

搞了半天见链接:

Installation | ProphetProphet has two implementations: R and Python.https://facebook.github.io/prophet/docs/installation.html#python

Prophet is on PyPI, so you can use pip to install it.


1
python -m pip install prophet
  • From v0.6 onwards, Python 2 is no longer supported.
  • As of v1.0, the package name on PyPI is “prophet”; prior to v1.0 it was “fbprophet”.
  • As of v1.1, the minimum supported Python version is 3.7.

After installation, you can get started!

所以因为改名字了??????

然后按一下流程安装

一、Prophet的安装依赖于pystan库,所以先安装pystan,直接win+r  pip install pystan
二、然后在安装prophet,而不是fbprophet, pip install prophet

WINDOWS系统下python安装fbprophet_第1张图片

这就可以了

 

你可能感兴趣的:(python,pip,numpy)