当我运行我的 python 代码时,它要求主机。
未找到主机。请指定(单个)主机字符串进行连接:
我有以下代码:
from fabric.api import *
from fabric.contrib.console import confirm
env.hosts = [ 'ipaddress' ]
def remoteRun():
print "ENV %s" %(env.hosts)
out = run('uname -r')
print "Output %s"%(out)
remoteRun();
我什至尝试使用 -H 选项运行 fab 并且收到相同的消息。我正在使用 Ubuntu 10.10 任何帮助表示赞赏。顺便说一句,我是 Python 的新手。