无法在 RHEL 8 中为 Python 安装 Pandas

Unable to install Pandas for Python in RHEL 8

我正在尝试在我的 RHEL 8 服务器中为 Python 安装 pandas。我尝试使用 yum list pandas 列出 pandas 包,它在可用包下给了我下面的包 python3-pandas.x86_64。

但是,当我尝试使用 yum install python3-pandas.x86_64 安装此软件包时,它显示以下错误:

**Problem: package python3-pandas-0.25.3-1.el8.x86_64 requires python3-matplotlib, but none of the providers can be installed

conflicting requests

nothing provides libqhull.so.7()(64bit) needed by python3-matplotlib-3.0.3-3.el8.x86_64 (try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)**

我是否需要明确安装 libqhull.so.7()(64 位)?如果是这样,您能告诉我该怎么做吗?我没有看到任何相关的包。此外,根据 Red Hat documentation,它表示 libqhull 已作为 RHEL 8 的一部分提供。但我没有看到该软件包。有什么我想念的吗?

提前致谢

许多软件包,包括 libqhull,都在 CodeReady Linux Builder 存储库中。

要在 RHEL 8 中启用它,运行:

ARCH=$( /bin/arch )
subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms"