python关于module ‘pip._internal‘ has no attribute ’pep425tags‘

这个问题有很多种情况,网上也给出了关于版本的几个解决方案,接下来我来系统的总结一下:

遇到这个问题的起因是我想安装wordcloud

安装wordcloud的前提又要安装wheel(运行whl文件)

pip install wheel 

然后去下载wordcloud(版本很多,要下载对才行)!!(坑开始了)

进入https://www.lfd.uci.edu/~gohlke/pythonlibs/下载wordcloud

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第1张图片

其中那些-cp39-cp39-win就是版本(要对应本机python的版本)

那么这个版本如何查呢?

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第2张图片

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第3张图片

然而,以上两种方法我都试过了,不可行。

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第4张图片

接下来,我开始疯了,搞什么飞机!!!!(粗口.txt)

我有尝试了网上看到的一种方法,如下:

这一次出来的是:我缺少了一个参数archive_root,那又是啥玩意儿啊(抓头.jpg)

我找到get_supported()这个函数看看

用记事本打开

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第5张图片

我猜应该是版本的参数,于是尝试了一下,成功了!!

python关于module ‘pip._internal‘ has no attribute ’pep425tags‘_第6张图片

 

你可能感兴趣的:(python关于module ‘pip._internal‘ has no attribute ’pep425tags‘)