Python代码在命令行中安装Firefox.exe

时间:2018-05-08 05:41:41

标签: python firefox

我使用以下代码在Python代码中运行Mozilla Firefox .exe文件。

import os
os.startfile("D:\Firefox_Installer.exe")

但这会打开Firefox的正常安装向导。相反,我想在Python命令行中运行Firefox安装,其中所有安装过程都应该只在命令行内完成。那有没有图书馆?感谢源代码。

2 个答案:

答案 0 :(得分:0)

尝试使用Silent参数以-ms模式安装它。

类似的东西:

import os
os.system("D:\Firefox_Installer.exe -ms")

有关此here

的更多信息

答案 1 :(得分:0)

只需使用双反斜杠(并确保路径正确):

import os
os.startfile("D:\\Firefox_Installer.exe")

P.S。 :我使用的版本是3.6.5