Jan-29-2025, 12:09 AM
Don’t know if this is the correct place for this question, if not just help out on where I should go?
A thread here titled “[SOLVED] Upgraded Python: Module no longer found” (https://python-forum.io/thread-43804.html?
highlight=No+module+named+%27tkinter%27) gives this fix:
For others' benefit, here's the fix:
This seems like a fix for pycharm on windows, this looks like the same problem I’m having, is there a fix for Linux mint?
curbie
A thread here titled “[SOLVED] Upgraded Python: Module no longer found” (https://python-forum.io/thread-43804.html?
highlight=No+module+named+%27tkinter%27) gives this fix:
For others' benefit, here's the fix:
1 2 |
1 pip3 freeze - - path c:\Users\joe\AppData\Local\Programs\Python\Python312\Lib\site - packages\ > python_requirements.txt 2 pip3 install - r python_requirements.txt |
curbie