开始使用 Qooxdoo

发布于 2024-09-14 17:01:30 字数 560 浏览 3 评论 0原文

我下载了 Qooxdoo,然后是 ActivePython 并按照本教程安装它 http://qooxdoo.org/documentation/1.1 /你好世界。当我按照说明操作时,我得到以下结果:

  1. C:\qooxdoo-1.1-sdk\tool\bin\create-application.py --name=custom --out=C: - 此命令打开一个“create-application”字文件。
  2. c :\custom 内的 cd C
  3. :\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:

  1. C:\qooxdoo-1.1-sdk\tool\bin\create-application.py
    --name=custom --out=C:
    - this command opens a "create-application" wordfile.
  2. cd C:\custom
  3. inside c:\custom I typed generate.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音栖息无 2024-09-21 17:01:30

为了像这样在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文