Scons 无法从 Cygwin 运行
我在 Windows XP SP2 上安装了 Scons 和 Cygwin。当我从 Cygwin 调用 Scons 时,我收到以下错误消息:
bash: scons: command not found
可能是什么问题,如何解决?
I have Scons and Cygwin installed on Windows XP SP2. When i call Scons from Cygwin i get the following error message:
bash: scons: command not found
what could be the problem, and how do i solve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用文件“scons”的直接路径?如果它解决了问题,您应该将此路径添加到 cygwin 的 PATH 变量中(
export PATH=$PATH:newPath
)。您可以通过执行以下命令查看它:echo $PATH
have you tried using direct path to file 'scons'? if it solves the problem, you should add this path to cygwin's PATH variable (
export PATH=$PATH:newPath
). you can see it by executing:echo $PATH
或者,使用 scons.bat,如下所示
Alternatively, use scons.bat as in