ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro

今天在配置一个python环境,在执行requiremennts.txt时突然提示上述报错,如下图所示。

ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro_第1张图片

 在网上查阅各种资料,都不能解决根本问题。经过分析找出以下原因

1. 可能是多个python共存出现识别混乱。解决办法是将配置的环境和环境路径对应调整。

2.下载的版本是不符合Python版本的,可以尝试降级下载。

3.下载对应包的wheel文件,运行wheel文件生成包解决问题。

本人经过多种方法尝试,最终下载wheel包有效。

ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro_第2张图片

进入对应包的官网根据说明文档可以查看是否为缺失相应依赖,部分包需要别的包支撑。

如果验证numpy、pip、以及g C++文件均存在。则可以下载wheel文件

ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro_第3张图片

 找到对应版本的wheel包至环境路径下即可编译成需要的python-ldap包。

ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro_第4张图片

 运行pip install python_ldap-3.4.0-cp310-cp310-win_amd64.whl即可。ERROR: Could not build wheels for python-ldap, which is required to install pyproject.toml-based pro_第5张图片

 

你可能感兴趣的:(python,django,pip,ipython)