Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.
like image 553
kamazz Avatar asked Dec 04 '25 06:12

kamazz


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

like image 109
kamazz Avatar answered Dec 06 '25 22:12

kamazz