IT系ノウハウ Linux Python エラー解消

pip install Talib がエラーでできない|ERROR: Could not find a version that satisfies the requirement talib

コンテンツ

事象

以下のようなエラーが発生していて Talib のインストールができない

hellomyworld@MacBook-Air % pip install talib   
ERROR: Could not find a version that satisfies the requirement talib (from versions: none)

対処

よく見たらライブラリの名前が違っていた、正しくは以下

pip install ta-lib

hellomyworld@MacBook-Air % pip install ta-lib
Collecting ta-lib
  Using cached TA-Lib-0.4.24.tar.gz (269 kB)
  Preparing metadata (setup.py) ... done

pip install wheel が前提として必要な場合もある

この記事が役に立ったという方は
ボタンをポチッとしてくれたら喜びます

-IT系ノウハウ, Linux, Python, エラー解消
-,