简体   繁体   中英

How to install pyramid-arima in python 3.7

I'm trying to implement auto arima in my python 3.7 on Windows10 So I tried to install pyramid-armia using following command

pip install pyramid-arima

But I'm getting error message

 Could not find a version that satisfies the requirement pyramid-arima (from versions: )]
 No matching distribution found for pyramid-arima

I also tried steps mentioned here

But got the same error message Can you please guide me to install it?

This error might be because there is no version of package that fits combination of versions of your Python, Operating System, Cpu Type and Instruction Set.

That package is out-dated and abandoned, hence not installable, use new replacement, which is pmdarima package:

pip install pmdarima

and import like:

import pmdarima

Official documentation for pmdarima is here .

If still you're getting same error for new pmdarima then download .whl package directly from here .

You need to download package corresponding to your python version and windows bits. Eg if you have Python 3.7 and Windows 64-bit then download pmdarima-1.7.1-cp37-cp37m-win_amd64.whl (or with win32 suffix for 32-bit windows), here cp37 means CPython version 3.7 .

Then just install it like this:

pip install pmdarima-1.7.1-cp37-cp37m-win_amd64.whl

Also many trouble-some Windows prebuild .whl packages that have problems with installation/compilation are located here . I've often downloaded this prebuilt packages from there, when haven't succeeded with pip install. But for the case of pmdarima it is located at the first link but not second.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM