gpt4 book ai didi

Python sh 导入导致 PyDev 中出现 Unresolved 导入错误

转载 作者:行者123 更新时间:2023-11-30 23:35:26 26 4
gpt4 key购买 nike

我在 python 2.7.5 中使用 sh 来调用 shell 程序,例如 curlmkdir,但在 Eclipse 4.3.0 下的 PyDev 插件 2.7.5 中。以下行给出了 Unresolved Import 错误:

from sh import curl, printenv, mkdir, cat

我可以在 python shell 中运行上面的代码。我确实在首选项的 Interpreter - Python 窗口的 Libraries Pane 中包含了 sh 的路径,所以我认为这不是问题。

最佳答案

尝试使用subprocess module调用控制台命令。例如:

from subprocess import call
dir_name = '/foo/bar/'
call('mkdir %s'%dir_name, shell=True)

关于Python sh 导入导致 PyDev 中出现 Unresolved 导入错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17330516/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com