1. 程式人生 > >安裝talib過程中遇到的坑和解決方法

安裝talib過程中遇到的坑和解決方法

我的環境:

遇到的坑和解決辦法

  • 坑主要是py3的,py2的直接就安裝成功了
  • conda install 由於依賴python版本和我的系統版本不相容,因此不考慮anaconda.org/Quantopian/ta-lib處的解決方案,此外,即使相容,照樣沒有從根本上解決問題,因此原來的報錯將依然存在。
  • 首先是pip install TA-Lib無法安裝成功,報錯資訊為:
    compilation terminated. error: command ‘gcc’ failed with exit status 1
  • 以上方法均不能徹底解決問題,原報錯資訊依然存在
  • 此後安裝可以成功,但是無法import
    • import時報錯:ImportError: libta_lib.so.0: cannot open shared object file: No such file or directory
    • 至此,終於可以正常使用talib了