Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

the python path in your debug configuration is invalid.

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)"
 
PREVIOUS NEXT
Tagged: #python #path #debug #configuration
ADD COMMENT
Topic
Name
6+4 =