How to install npm package from a python script?
When I use subprocess.Popen([\"node\", \"app.js\"]) it is OK.
subprocess.Popen([\"node\", \"app.js\"])
set the shell argument to True
shell
subprocess.Popen(["node", "npm", "install", "open"], shell=True)