> Hello Matthew, thank You for the answer ! The problem is, that i don't know > where the script file is located.I do not find any ...sh file in the > directories around Geany.
This is just a little wrapper script created by Geany dynamically. Basically it just runs the command you configured in Geany (Build->Set build commands). It is most probably unrelated to the real problem. Can you run your code from the command like, e.g.: `python First_Tkinter_RSP.py`? Did you maybe configured IDLE to use a virtualenv? Can you save the following trivial example as file and try to execute it in Geany? If this works, it's related to your code otherwise it's a general problem with your Geany configuration. ```py #!/usr/bin/env python # -*- coding: utf-8 -*- print("Hello World!") ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/2578#issuecomment-678777626