如何解决安装python-ldap和django-auth-ldap在Windows上使用pip时出现的错误?

2026-05-21 19:131阅读0评论SEO资源
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计340个文字,预计阅读时间需要2分钟。

如何解决安装python-ldap和django-auth-ldap在Windows上使用pip时出现的错误?

安装`pip`时遇到问题:`is not a supported wheel on this platform`。原因1:安装的库不是对应Python版本的库,例如下载的库中包含`cp27`表示适用于Python 2.7。原因2:遇到的具体情况(下)。


pip install

安装出现问题: is not a supported wheel on this platform


可能的原因1:安装的不是对应python版本的库,下载的库名中cp27代表python2.7,其它同理。

阅读全文

本文共计340个文字,预计阅读时间需要2分钟。

如何解决安装python-ldap和django-auth-ldap在Windows上使用pip时出现的错误?

安装`pip`时遇到问题:`is not a supported wheel on this platform`。原因1:安装的库不是对应Python版本的库,例如下载的库中包含`cp27`表示适用于Python 2.7。原因2:遇到的具体情况(下)。


pip install

安装出现问题: is not a supported wheel on this platform


可能的原因1:安装的不是对应python版本的库,下载的库名中cp27代表python2.7,其它同理。

阅读全文