Why do I get a ModuleNotFoundError: No module named 'graphics2' error when trying to import button.py? I tried putting graphics, graphics 2, button, and the file I was working on into one folder and it's still bringing up the same error. Any thoughts on how I can fix this?
You have to put all the files of graphics, graphics 2, button in the same folder with your current working .py file. Basically, when those files are not in the same folder, Python could not trace on them to import.
Hope this helps!