如何将 Python 3.x 捆绑到使用 ReactJs 的 Electron 应用程序?
How can I bundle Python 3.x to my Electron App that uses ReactJs?
我有一个电子应用程序要在客户的计算机上使用。
应用程序需要打开 IEDriver.exe 才能使用某些代理打开某些 URL。所以我正在调用一个 python 脚本,它通过 Python-Shell 包使用 selenium 和 IEDriver。
当我构建我的电子应用程序时,它在我的机器上运行良好,因为我已经安装了 Python 3.x。但是当我将它发布给客户使用时,Python 3.x 应该安装在他们的机器上。那么如何将 Python3.x 与我的应用程序捆绑在一起?
这是我的构建配置,在此先感谢。
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run electron-build",
"react-build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-build": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "sampleAppId",
"extends": null,
"win": {
"asar": true,
"target": "nsis",
"icon": "./build/assets/icon.png"
},
"nsis": {
"oneClick": true,
"installerLanguages": "en_US",
"displayLanguageSelector": true,
"multiLanguageInstaller": true,
"unicode": true
},
"files": [
"./build/**/*",
"./public/Main.js",
"./src/electron/*"
]
}
您可以使用捆绑一切。 Innosetup.
我有一个电子应用程序要在客户的计算机上使用。
应用程序需要打开 IEDriver.exe 才能使用某些代理打开某些 URL。所以我正在调用一个 python 脚本,它通过 Python-Shell 包使用 selenium 和 IEDriver。
当我构建我的电子应用程序时,它在我的机器上运行良好,因为我已经安装了 Python 3.x。但是当我将它发布给客户使用时,Python 3.x 应该安装在他们的机器上。那么如何将 Python3.x 与我的应用程序捆绑在一起?
这是我的构建配置,在此先感谢。
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run electron-build",
"react-build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-build": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "sampleAppId",
"extends": null,
"win": {
"asar": true,
"target": "nsis",
"icon": "./build/assets/icon.png"
},
"nsis": {
"oneClick": true,
"installerLanguages": "en_US",
"displayLanguageSelector": true,
"multiLanguageInstaller": true,
"unicode": true
},
"files": [
"./build/**/*",
"./public/Main.js",
"./src/electron/*"
]
}
您可以使用捆绑一切。 Innosetup.