The 'typing' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please `conda remove typing` then try again.怎么解决
时间: 2023-10-18 08:07:19 浏览: 247
java小游戏 Typing(源码)
这个问题是因为 `typing` 包已经成为 Python 标准库的一部分,而 `conda` 中的版本可能过时,不兼容 PyInstaller。
解决方法是通过以下命令升级 `conda` 中的 `typing` 包:
```
conda update typing
```
如果更新后仍然出现问题,你可以考虑使用 `virtualenv` 等其他虚拟环境工具来管理你的 Python 环境,避免版本冲突。
阅读全文