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

Viewed 2798

When I try to convert my python file to exe using pyinstaller.

Input:

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

I got this error.

Output:

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

Thanks for everybody who did not helped me. I found solution on my own, I needed to write on console this:

pip uninstall typing

That's all

Related