You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
: `Could not spawn the Python interpreter \`${python}\`.`
62
-
atom.notifications.addError("`ide-python` could not launch your Python runtime.",{
63
-
dismissable: true,
64
-
description: `${description}<p>If you have Python installed please set "Python Executable" setting correctly. If you do not please install Python.</p>`,
65
-
})
66
-
})
78
+
returnchildProcess
79
+
}
67
80
68
-
childProcess.on("close",(code,signal)=>{
69
-
if(code!==0&&signal==null){
70
-
atom.notifications.addError("Unable to start the Python language server.",{
: `Could not spawn the Python interpreter \`${python}\`.`
86
+
atom.notifications.addError("`ide-python` could not launch your Python runtime.",{
87
+
dismissable: true,
88
+
description: `${description}<p>If you have Python installed please set "Python Executable" setting correctly. If you do not please install Python.</p>`,
90
89
})
91
-
returnchildProcess
90
+
}
91
+
92
+
onSpawnClose(code,signal){
93
+
if(code!==0&&signal==null){
94
+
atom.notifications.addError("Unable to start the Python language server.",{
"description": "Absolute path of your Python binary. This is used to launch the Python language server. Make sure to install `pyls` for this version of Python. Changes will take effect after a restart of the language server. Use `$PIPENV_PATH/bin/python` if you want to use the pipenv path of your project"
0 commit comments