ERROR: Could not find a version that satisfies the requirement talib (from versions: none) ERROR: No matching distribution found for talib
时间: 2024-06-03 15:06:19 浏览: 217
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常表示您的Python环境中没有安装TA-Lib库。TA-Lib是一个用于技术分析的库,需要在Python环境中进行安装。您可以尝试通过以下命令安装TA-Lib:
```
pip install TA-Lib
```
如果您使用的是Windows系统,在运行上述命令之前,您还需要从TA-Lib的官方网站上下载并安装对应的二进制文件。具体安装步骤请参考官方文档。
阅读全文