我正在尝试在电子(atom-shell)中使用bluetooth-serial-port本机模块。我做了以下。
npm install electron-prebuilt -g
npm install electron-prebuilt --save-dev
npm install --save-dev electron-rebuild
npm install bluetooth-serial-port --msvs_version=2013
./node_modules/.bin/electron-rebuild
我收到以下错误。
无法找到电子预制的版本号,无论是安装还是指定明确的版本"
有人可以帮忙吗?
答案 0 :(得分:5)
在同一文件夹级别安装电子预制件。
答案 1 :(得分:2)
在项目的根文件夹中,使用:
node_modules/.bin/electron -v
如果您使用的是Windows计算机,请在路径中使用反斜杠。
node_modules\.bin\electron -v
这就是我的样子:v0.28.3
答案 2 :(得分:1)
您可以通过运行没有参数的电子来查看您的电子版本号。
示例:
cd ./my_project
npm install --save-dev electron-prebuilt
node_modules/.bin/electron
您应该收到一些显示版本号的欢迎通知。
如果您已经安装了全球预制的电子,只需运行'electron'命令即可获得相同的结果。