Jalur Python dalam konfigurasi debug Anda tidak valid.

it means we the correct path for the Py executable must be set on the debug config
Step_1. Get the path to executable e.g. using shell on windows
python -c "import sys; print(sys.executable)"
   C:\<somePath>\python.exe

Step_2. set this on the IDE that needs the Python path

About the other relevant Py paths, this shows dlls and lib paths among others
python -c "import sys; print(sys.path)"
ruperto2770