Closed doerrf closed 6 months ago
okay so I found two issues with my python setup that were causing the error:
py -3.11
and python3.11
are two different installations of python. for some reason py -3.11
is 3.11.4 while python3.11
is 3.11.9. I thought I was being helpful by creating a python
alias to point to 3.11.9 when running the install script, but this is already handled when setup_cuda.bat
sets up a virtual environment pointing python
to 3.11.4
These are the last few lines of the output from running setup_cuda.bat in Windows 10 powershell that explain the relevant error (my username is dashed out for security).
This error still occurs when I install tkinter manually with
python -m install tkinter
. I also checked the local virtual environment to see if the virtual python environment has tkinter, and it ALSO seems to have it. So I'm not sure what I'm missing.I'll try to look deeper into this sometime later and retrace the steps of the install script, and bump the thread if I come across anything.