如何将 cygwin 样式路径 (/cygdrive/) 和 Windows 版本的 Python 结合起来?
我有执行 .py 脚本的 .sh 脚本,但它不起作用,出现以下错误:
C:\Python27\python.exe: 无法打开文件 '/cygdrive/c/NewFolder/Kindle/Src_Updater/ kindle_update_tool_lite.py':[Errno 2]没有这样的文件或目录
如何将cygwin样式路径(/cygdrive/)和Windows版本的Python结合起来而不需要改变脚本?
I have .sh script that executes .py script and it doesn't work giving me following error:
C:\Python27\python.exe: can't open file '/cygdrive/c/NewFolder/Kindle/Src_Updater/kindle_update_tool_lite.py': [Errno 2] No such file or directory
How can I combine cygwin style path (/cygdrive/) and windows version of Python without changing scripts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先知道你使用的是哪种Python。如果您需要运行 cygwin python,您可以在 .sh 脚本中显式调用它或将其添加到系统路径中。另一个非常有用的命令是 cygpath。
应该运行
First know which python you are using. If you need to run cygwin python you can either call it explicitly in your .sh script or add it to your system path. Another very useful command is
cygpath
.Should run
您应该使用 cygwin POSIX 环境中的 python 解释器。
You should use the python interpreter from inside cygwin POSIX environment.