pip_install_pyinstaller安装失败解决发方案

转载。博客来自
https://blog.csdn.net/weixin_43849588/article/details/89464031

再使用pip install pyinstaller 过程中,出现如下错误:
AttributeError: module ‘setuptools.build_meta’ has no attribute ‘_legacy_’
在这里插入图片描述
解决方案:

  1. 将setuptools包更新至最新版。
    *注下面代码均在cmd中实现
pip install --upgrade setuptools

2.再次尝试使用pip 安装pyinstaller
若出先如下错误
在这里插入图片描述
再cmd中尝试

pip install wheel

3.最后再次尝试使用pip 安装pyinstaller
在这里插入图片描述
安装成功!

你可能感兴趣的:(pip_install_pyinstaller安装失败解决发方案)