我正在阅读有关Fabric Namespaces的基本教程。
我希望做一些类似于Structuring a fabric project with namespaces
我的__init__.py
文件看起来:
from fabric.api import task
@task
def abc():
pass
当我运行时,fab --list
我收到此错误:
me@galvatron:/tmp/fabric_test$ fab --list
Fatal error: Couldn't find any fabfiles!
Remember that -f can be used to specify fabfile path, and use -h for help.
Aborting.
谁能告诉我我错过了什么或做错了什么?