将 TA-lib 安装到 Google Colab 和 VSC 时出错。 “无法为 ta-lib 造轮子”一直运行良好,但今天出现问题

问题描述 投票:0回答:1

1。下载运行良好: !wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz !tar -xzvf ta-lib-0.4.0-src.tar.gz %cd ta-lib !./configure --prefix=/usr !制作 !进行安装

2。安装有错误。安装失败。一直运作良好。

!pip 安装 TA-Lib

收集 TA-Lib 使用缓存的 ta_lib-0.6.0.tar.gz (371 kB) 安装构建依赖项...完成 获取制造轮子的要求...完成 安装后端依赖项...完成 准备元数据 (pyproject.toml) ...完成 已满足要求:/usr/local/lib/python3.10/dist-packages 中的 setuptools(来自 TA-Lib)(75.1.0) 已满足要求:/usr/local/lib/python3.10/dist-packages 中的 numpy(来自 TA-Lib)(1.26.4) 为收集的包构建轮子:TA-Lib 错误:子进程退出并出现错误

× TA-Lib 的构建轮 (pyproject.toml) 未成功运行。 │ 退出代码:1 ╰─> 输出见上文。

注意:此错误源自子进程,并且可能不是 pip 的问题。 TA-Lib 的构建轮 (pyproject.toml) ...错误 错误:TA-Lib 构建轮子失败 构建 TA-Lib 失败 错误:错误:无法为某些基于 pyproject.toml 的项目(TA-Lib)构建可安装的轮子

如何正确安装?

请注意:

或者,这也不起作用:

!wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz !tar -xzvf ta-lib-0.4.0-src.tar.gz %cd ta-lib !./configure --prefix=/usr !制作 !进行安装 %光盘 .. !pip 安装 TA-Lib

我也尝试在VSC中安装它,但仍然出现同样的错误:

注意:此错误源自子进程,并且可能不是 pip 的问题。 h“Microsoft C++ 构建工具”:https://visualstudio.microsoft.com/visual-cpp-build-tools/ 错误:为 ta-lib 构建轮子失败 构建 ta-lib 失败 错误:无法为 ta-lib 构建轮子,这是使用基于 pip.project.toml 的项目安装 pylem 所必需的

python installation google-colaboratory ta-lib
1个回答
0
投票

我有完全相同的问题 - 我尝试将 TA-lib 降级到 0.5.2 甚至更早的版本。 5 天前它对我有用,但现在不再工作了,我在安装过程中收到以下错误消息:

Collecting TA-Lib==0.5.2
  Downloading TA-Lib-0.5.2.tar.gz (372 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 372.0/372.0 kB 20.0 MB/s eta 0:00:00
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Installing backend dependencies ... done
  Preparing metadata (pyproject.toml) ... done
Collecting setuptools (from TA-Lib==0.5.2)
  Using cached setuptools-75.7.0-py3-none-any.whl.metadata (6.7 kB)
Collecting numpy (from TA-Lib==0.5.2)
  Using cached numpy-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB)
Using cached numpy-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB)
Using cached setuptools-75.7.0-py3-none-any.whl (1.2 MB)
Building wheels for collected packages: TA-Lib
  error: subprocess-exited-with-error
  
  × Building wheel for TA-Lib (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> See above for output.
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
  Building wheel for TA-Lib (pyproject.toml) ... error
  ERROR: Failed building wheel for TA-Lib
Failed to build TA-Lib
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (TA-Lib)

看来colab原生安装的库升级肯定有什么问题。

© www.soinside.com 2019 - 2024. All rights reserved.