错误:无法在 Python 中为 hdbscan 构建轮子
ERROR: Could not build wheels for hdbscan in Python
要解决错误“Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly”,运行pip install --upgrade pip
命令升级您的pip
版本并重新运行pip install hdbscan
命令。
ERROR: Failed building wheel for hdbscan ERROR: Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly
如果您使用 anaconda,请尝试使用以下命令安装软件包。
conda install -c conda-forge hdbscan
您还应该安装该python3.X-dev
包,因为在安装过程中编译 C Python 模块的包需要该python-dev
包。
sudo apt-get install python3.10-dev
如果建议没有帮助,请升级您的pip
.
以下是pip
在所有操作系统上升级的命令。
哪个命令有效取决于您的操作系统和 Python 版本。
# 👇️ if you have pip already installed pip install --upgrade pip # 👇️ if your pip is aliased as pip3 (Python 3) pip3 install --upgrade pip # 👇️ if you don't have pip in your PATH environment variable python -m pip install --upgrade pip python3 -m pip install --upgrade pip py -m pip install --upgrade pip # 👇️ if you have easy_install easy_install --upgrade pip # 👇️ if you get a permissions error sudo easy_install --upgrade pip # 👇️ if you get a permissions error when upgrading pip pip install --upgrade pip --user # 👇️ upgrade pip scoped to the current user (if you get permissions error) python -m pip install --user --upgrade pip python3 -m pip install --user --upgrade pip # 👇️ Installing directly from get-pip.py (MacOS and Linux) curl https://bootstrap.pypa.io/get-pip.py | python # 👇️ if you get permissions issues curl https://bootstrap.pypa.io/get-pip.py | sudo python # 👇️ alternative for Ubuntu/Debian sudo apt-get update && apt-get upgrade python-pip # 👇️ alternative for Red Hat / CentOS / Fedora sudo yum install epel-release sudo yum install python-pip sudo yum update python-pip
现在pip
已经升级,尝试运行pip install hdbscan
命令。
pip install hdbscan pip3 install hdbscan python -m pip install hdbscan python3 -m pip install hdbscan conda install -c conda-forge hdbscan
如果错误未解决,请同时升级setuptools
和wheel
软件包。
pip install --upgrade setuptools wheel pip3 install --upgrade setuptools wheel python3 -m pip install --upgrade setuptools wheel
升级后尝试重新运行该pip install
命令。setuptools
wheel
如果这没有帮助,请尝试使用该
选项运行pip install
命令。--upgrade
pip install hdbscan --upgrade pip3 install hdbscan --upgrade python -m pip install hdbscan --upgrade python3 -m pip install hdbscan --upgrade
如果错误未解决,请尝试安装带有
--no-cache-dir
禁用缓存选项的软件包。
pip install hdbscan --no-cache-dir pip3 install hdbscan --no-cache-dir
如果这没有帮助,请使用该--pre
选项来包括包的预发布和开发版本。
pip install hdbscan --pre pip3 install hdbscan --pre python -m pip install hdbscan --pre python3 -m pip install hdbscan --pre
该--pre
选项使其pip
包含包的预发布和开发版本。默认情况下pip
只查找稳定版本。
wheel
如果错误未解决,请尝试运行带选项的pip install
命令
。--no-use-pep517
pip install --no-use-pep517 hdbscan pip3 install --no-use-pep517 hdbscan python -m pip install --no-use-pep517 hdbscan python3 -m pip install --no-use-pep517 hdbscan
如果这没有帮助,请尝试安装另一个版本的hdbscan
.
pip install package==
您可以通过运行命令来检查软件包的可用版本
。
pip install hdbscan==
输出包含包的所有版本的元组,从最旧的版本到最新的版本。
选择另一个版本的包并尝试安装它。这是一个例子。
pip install hdbscan==0.8.25 pip3 install hdbscan==0.8.25
如果这没有帮助,请尝试创建一个虚拟环境。
创建虚拟环境
要解决“Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly”错误:
- 创建一个虚拟环境。
- 激活虚拟环境。
- 在虚拟环境处于活动状态的情况下运行
pip install
命令。
# 👇️ use correct version of Python when creating VENV python3 -m venv venv # 👇️ activate on Unix or MacOS source venv/bin/activate # 👇️ activate on Windows (cmd.exe) venv\Scripts\activate.bat # 👇️ activate on Windows (PowerShell) venv\Scripts\Activate.ps1 # 👇️ install the specific package in the virtual environment pip install hdbscan
如果该python3 -m venv venv
命令不起作用,请尝试以下 2 个命令:
python -m venv venv
py -m venv venv
确保根据您的操作系统和 shell 使用正确的命令来激活您的虚拟环境。
您的虚拟环境将使用用于创建它的 Python 版本。
检查包是否支持您的 Python 版本
当您尝试安装的包不适wheels
用于您的 Python 版本时,有时会导致错误“错误:无法为 hdbscan 构建轮子”。
您可以使用命令检查您的 Python 版本python --version
。
python --version
您可以在包的 pypi 页面的下载文件部分检查包是否具有适用于特定 Python 版本的轮子。
cp310
“Built Distributions”下的文件名表示特定操作系统支持 Python 3.10 版。如果这些.whl
文件不适用于您的 Python 版本,您可以下载旧版本。
如果包不支持最新的 Python 版本,您可以下载包支持的特定 Python 版本。
“寻找特定版本”表中提供了不同的版本
。
如果出现提示,请确保勾选以下选项:
- 为所有用户安装启动器(推荐)
- 将 Python 添加到 PATH(这会将 Python 添加到您的 PATH 环境变量)
尝试在详细模式下运行 pip install
如果这些建议都没有帮助,请尝试pip install
在详细模式下运行命令。
pip install hdbscan -vvv pip3 install hdbscan -vvv python -m pip install hdbscan -vvv
该-v
选项代表详细模式,最多可以使用 3 次。
当pip install
命令以详细模式运行时,命令会显示更多输出以及错误发生的方式。
结论
要解决错误“Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly”,运行pip install --upgrade pip
命令升级您的pip
版本并重新运行pip install hdbscan
命令。