CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Does not work with Python 3.7

Open roelvanderzee opened this issue 3 years ago • 2 comments

CustomTkinter does not work with Python 3.7

roelvanderzee avatar Dec 03 '22 17:12 roelvanderzee

So upgrade your python version.

Akascape avatar Dec 04 '22 03:12 Akascape

You have to tell me what's the problem, otherwise I can't help. Normally it should work on python 3.7.

TomSchimansky avatar Dec 04 '22 10:12 TomSchimansky

I get the message cannot import name 'Literal' from 'typing' (C:\Users\921040\AppData\Local\Continuum\anaconda3\lib\typing.py)

I think It has to be

try: from typing import Literal except ImportError: from typing_extensions import Literal

roelvanderzee avatar Dec 06 '22 11:12 roelvanderzee

So upgrade your python version.

So upgrade your python version.

I use Python to run a FEM software program (Plaxis). This FEM package has a lot of securities build in, based on Python 3.7. The FEM software does not work (yet) with Python 3.8 or higher.

roelvanderzee avatar Dec 06 '22 11:12 roelvanderzee

Ok didn't thought of this, I will fix this with the next version.

TomSchimansky avatar Dec 06 '22 11:12 TomSchimansky

Fixed now with version 5.0.2.

TomSchimansky avatar Dec 06 '22 22:12 TomSchimansky