繁体   English   中英

在Linux上使用Electron安装依赖项

[英]Install a dependency using Electron on Linux

我正在开发一个Electron应用程序,需要从中安装依赖项。
软件包sudo-prompt最终部分起作用。
我的代码:

const sudo = require("sudo-prompt");
sudo.exec("apt-get install lib32gcc1", {name: "SteamCMD GUI"}, (error, stdout, stderr) => {
   // The code here doesn't execute, as it possibly waits for the user's confirmation to press Y and Enter 
});

并且依赖关系永远不会被安装。

怎么解决呢?
谢谢!

像这样尝试:

const sudo = require("sudo-prompt");// The -y did the trick
sudo.exec("apt-get install lib32gcc1 -y", {name: "SteamCMD GUI"}, (error, stdout, stderr) => {
   // The code here doesn't execute, as it possibly waits for the user's confirmation to press Y and Enter 
});

-y选项使apt-get跳过提示。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM