js
1a javascript error occurred in the main process 2 3uncaught exception 4Error process exited with code 3221225781 5at terminateIfNeeded
node.jsからpython-shellを使ってpythonを起動させる時にこのようなエラーになります。
let options = { mode: 'text', pythonPath: path.join(__dirname, python_path), pythonOptions: ['-u'], // get print results in real-time scriptPath: path.join(__dirname, script_dir), // python側へGUIで拾った値を渡す args: [email, password, __dirname], encoding: "binary" }; let pyshell = new PythonShell('login.py', options);
loginの時にlogin.pyでloginするため、このように起動しています。
macなら普通に起動できるのですが、なぜwindowsではこのようなエラーが起きてしまうのでしょうか?
回答1件
あなたの回答
tips
プレビュー