9

如何从 python 脚本安装 npm 包?

我用 subprocess.Popen(["node", "app.js"])的时候问题。
当我使用 subprocess.Popen(["npm", "install", "open"])它时会抛出错误

抱歉,Google 和 DuckDuckGo 今天不是我的朋友(

主要问题- 我的小实用程序需要自动本地安装包,因为全局包在 Windows 中不起作用。

PS。我不得不问这个问题,因为我正在尝试为 Sublime Text 2 开发一个插件。

这是Sublime python 控制台中的错误

Reloading plugin …\stsync.py
Traceback (most recent call last):
  File ".\sublime_plugin.py", line 103, in create_application_commands
    cmds.append(class_())
  File ".\stsync.py", line 16, in __init__
  File ".\subprocess.py", line 633, in __init__
  File ".\subprocess.py", line 842, in _execute_child
WindowsError: [Error 2] 

第 16 行:subprocess.Popen(["node", "npm", "install", "open"])


如果我将第 16 行更改为subprocess.Popen(["node", "npm", "install", "open"]) 那么 python 脚本将成功调用 nodejs 终端,但随后它将失败并出现错误:
cannot find npm module
节点错误

4

2 回答 2

4

shell参数设置为 True

subprocess.Popen(["node", "npm", "install", "open"], shell=True)
于 2015-03-06T16:54:56.823 回答
0

在 Windows 上,许多 Node.js “二进制文件”实际上都带有.cmd文件扩展名后缀,无论出于何种原因,在通过 调用期间subprocess.Popen,它都不会扩展(即使PATHEXT可能包含.cmd)。

因此,对于正确的解决方案(不使用shell=True),请尝试附加.cmd到所需的 Node.js 二进制文件:

Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (In
tel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> subprocess.Popen(['npm.cmd', 'install'])
<subprocess.Popen object at 0x005E18B0>
>>> npm ERR! install Couldn't read dependencies

当然它会抛出一个错误,因为我package.json在那个目录中没有。使用其他一些常用程序再试一次,例如webpack

>>> subprocess.Popen(['webpack'])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
...
FileNotFoundError: [WinError 2] The system cannot find the file specified

哦对了,补充一下.cmd

>>> subprocess.Popen(['webpack.cmd'])
<subprocess.Popen object at 0x008A18B0>
>>> No configuration file found and no output filename configured via CLI option
于 2018-04-26T14:22:33.197 回答