'typing' 包是标准库包的过时后向移植,与 PyInstaller 不兼容

The 'typing' package is an obsolete backport of a standard library package and is incompatible with PyInstaller

当我尝试使用 pyinstaller 将 python 文件转换为 exe 时。

输入:

PS C:\Users\User\Desktop\Новая папка (5)> pyinstaller -F  send.py

我遇到了这个错误。

输出:

`The 'typing' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. 
Please `pip uninstall typing` then try again.`

感谢所有没有帮助过我的人。我自己找到了解决方案,我需要在控制台上这样写:

pip uninstall typing

就这些了