windows 下 pyinstaller distutils not included with latest virtualenv (16.4.0)
2021-06-06 08:03
标签:util around __init__ under tps exe python fail 直接 因为windows下python3.7.2内置venv虚拟环境下pyinstaller错误问题,切换virtualenv但是发现最新版本又有其他问题 - -! 直接搜索到了社区的解决方案 将以上代码贴入 *.spec文件开头,清理build目录重新生成就可以了。或等官方新版本解决 windows 下 pyinstaller distutils not included with latest virtualenv (16.4.0) 标签:util around __init__ under tps exe python fail 直接 原文地址:https://www.cnblogs.com/flywuya/p/10784183.html起因
ModuleNotFoundError: No module named 'distutils'
[10373] Failed to execute script
排查
解决
# work-around for https://github.com/pyinstaller/pyinstaller/issues/4064
import distutils
if distutils.distutils_path.endswith('__init__.py'):
distutils.distutils_path = os.path.dirname(distutils.distutils_path)
文章标题:windows 下 pyinstaller distutils not included with latest virtualenv (16.4.0)
文章链接:http://soscw.com/index.php/essay/91187.html