开始使用 Qooxdoo
我下载了 Qooxdoo,然后是 ActivePython 并按照本教程安装它 http://qooxdoo.org/documentation/1.1 /你好世界。当我按照说明操作时,我得到以下结果:
C:\qooxdoo-1.1-sdk\tool\bin\create-application.py --name=custom --out=C:
- 此命令打开一个“create-application”字文件。- 在
c :\custom
内的cd C
- :\custom 我输入了
generate.py source-all
但出现以下错误
“generate.py”未被识别为内部或外部命令、可运行程序或批处理文件。
出了什么问题?我被困住了。
i downloaded Qooxdoo, then ActivePython and installed it as in this tutorial http://qooxdoo.org/documentation/1.1/helloworld. When I follow the instructions I get the following results:
C:\qooxdoo-1.1-sdk\tool\bin\create-application.py
- this command opens a "create-application" wordfile.
--name=custom --out=C:cd C:\custom
- inside
c:\custom
I typedgenerate.py source-all
but I got the following error
'generate.py' is not recognized as an internal or external command, operable program or batch file.
What's gone wrong? I'm stuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了像这样在 Windows 上从命令行执行 .pys,您需要将
.py
添加到 PATHEXT 环境变量中。您可能还需要确保 ActivePython 的 bin 目录位于您的路径中。如果是,那么您可以等效地运行
pythongenerate.py
。In order to execute .pys from the command line on Windows like that you'll need to add
.py
to your PATHEXT environment variable.You might also need to make sure that ActivePython's bin directory is in your path. If it is, you can then equivalently run
python generate.py
.