My project does not work when downloaded and run on windows. Why is that?

Hm. Odd. Try poetry? Probably won’t change anything, but can’t hurt either.

poetry init
poetry add customtkinter

If that errors because it’s not installed

pip install poetry

Try pip install [package] -U to try installing it for only your user.
Tip: Do this is a virtualenv and you’ll be able to isolate python dependencies between projects

1 Like