2016-08-14 100 views
1

我试图在Windows中启动电子应用通过https://github.com/electron/electron/blob/master/docs/development/build-instructions-windows.md蟒蛇:无法打开文件“scriptbootstrap.py”

我已经成功完成了前两步,并停留在建筑部分。

当我尝试运行python script\build.py,会出现以下错误:

python: can't open file 'scriptbootstrap.py': [Errno 2] No such file or directory 

并不仅仅是这个命令明确。沿线的任何命令(例如python script\build.py -c D)都会让我陷入困境。我通过窗户庆典

运行命令我认为它应该寻找脚本/ bootstrap.py而是寻找

+0

此文件不存在,或者您没有访问权限。 – mpampana

+0

感谢您的评论。该文件存在于脚本/ bootstrap.py中,但它只是查看scriptbootstrap.py – John

回答

0

首先,我想知道是否python script\bootstrap.py -v工作了你。

看样输出,我的机器上,(用git bash)的

[email protected] MINGW64 /e/Projects/electron (master) 
$ python script/bootstrap.py -v 
Submodule 'vendor/boto' (https://github.com/boto/boto.git) registered for path 'vendor/boto' 
Submodule 'vendor/breakpad' (https://github.com/electron/chromium-breakpad.git) registered for path 'vendor/breakpad' 
Submodule 'vendor/brightray' (https://github.com/electron/brightray.git) registered for path 'vendor/brightray' 
Submodule 'vendor/crashpad' (https://github.com/electron/crashpad.git) registered for path 'vendor/crashpad' 
Submodule 'vendor/depot_tools' (https://chromium.googlesource.com/chromium/tools/depot_tools.git) registered for path 'vendor/depot_tools' 
Submodule 'vendor/native_mate' (https://github.com/zcbenz/native-mate.git) registered for path 'vendor/native_mate' 
Submodule 'vendor/node' (https://github.com/electron/node.git) registered for path 'vendor/node' 
Submodule 'vendor/requests' (https://github.com/kennethreitz/requests) registered for path 'vendor/requests' 
Cloning into 'vendor/boto'... 
remote: Counting objects: 42186, done. 
<more lines cloning different dependencies.> 
. 
. 
. 

其次, 我建议在路径而不是 '\' 使用 '/'。这在Windows cmd中运行良好。但是,并不是如何处理不同脚本的路径。 '/'总是有效。

运行这两个命令,python script\bootstrap.py -vpython script/bootstrap.py -v,并python script\build.pypython script/build.py