在jupyter中import talib显示no module named talib,并且在Anaconda prompt中输入pip install Ta-Lib也显示很多错误,note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
解决:在Python Extension Packages for Windows网站下载与自己python版本(我的是3.7)相一致的whl文件,我下载的是TA_Lib‑0.4.24‑cp37‑cp37m‑win_amd64.whl,
然后将文件放在D:\Anaconda3\Lib\site-packages位置下
再在Anaconda prompt中输入:pip install D:\Anaconda3\Lib\site-packages\TA_Lib-0.4.24-cp37-cp37m-win_amd64.whl成功安装
回到jupyter中错误解决。