pynt icon indicating copy to clipboard operation
pynt copied to clipboard

doesn't work with Python 3.12+

Open jabbalaci opened this issue 10 months ago • 0 comments

The code uses the imp module, which was deprecated and turned into importlib in Python 3.12. To use pynt, we must use Python 3.11 (or a version below).

Workaround: with the package manager uv, we can specify which Python version to use. Thus, install pynt like this:

uv tool install pynt --python=3.11

Now pynt will work fine.

jabbalaci avatar Feb 08 '25 18:02 jabbalaci