python3.6版本打包出现TypeError: _get_sysconfigdata_name() missing 1 required positional argument: 'check_exists'
时间: 2024-05-06 09:19:12 浏览: 183
TypeError: missing 1 required keyword-only argument-python中的报错问题
5星 · 资源好评率100%
这个错误通常是在使用 `PyInstaller` 打包的过程中出现的,它与 Python 3.6 的 `sysconfig` 模块有关。
解决方案是在打包时加入一个参数 `--exclude-module _sysconfigdata_m`,如下所示:
```
pyinstaller your_script.py --exclude-module _sysconfigdata_m
```
这样就可以避免这个错误了。
阅读全文