for i in pods:
subprocess.Popen(["jira-agile-metrics", i], stdout=subprocess.PIPE)
output = subprocess.communicate()[0]
This code giving FileNotFoundError: [Errno 2] No such file or directory: 'jira-agile-metrics'
I already installed jira-agile-metrics. How can I solve this issue?
Welcome to the Atlassian Community!
This suggests that you have not installed all of the app, only the app part of it. You'll need to look at the docs for it to find out how to do the full installation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.