Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 PyCharm 中开发 Django 项目,一切正常。我已经将fabric 安装到我的虚拟环境中,并将fabfile.py 添加到我的项目中。在这个文件中,我放置了一个测试任务定义:
def hello(): print("Hello fabric!")
之后,我尝试直接从我的 PyCharm 执行此任务。你有什么建议我该怎么做?
添加“Python”运行配置/path/to/your/env/bin/fab作为脚本和hello脚本参数。
/path/to/your/env/bin/fab
hello
将工作目录设置为带有 fabfile 的目录。
例子: