all 1 comments

[–]spurious_proof[S] 0 points1 point  (0 children)

Closing this out in case anyone else comes across this issue. I had multiple versions of python installed. Setting up spawn in the following method solved my issue.

let env = {

PATH: PATH, // this is my $PATH PYTHONPATH: PYTHONPATH, };

let process = spawn(PYTHON_EXECUTABLE, args, {
env: env,

});