如何修复“错误:需要以下参数:-i / - image”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修复“错误:需要以下参数:-i / - image”相关的知识,希望对你有一定的参考价值。
我正在查看其他人的代码并遵循python代码;
import argparse
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True, help="path to the input image")
args = vars(ap.parse_args())
在最后一行给出以下错误;
usage: sample.py [-h] -i IMAGE
sample.py: error: the following arguments are required: -i/--image
我该如何解决这个问题?到目前为止,我没有尝试过什么似乎有所帮助。
答案
运行sample.py
时,需要指定-i
/ --image
参数:
python sample.py --image image/cat.png
如果您希望image
参数是可选的,请删除required=True
:
ap.add_argument("-i", "--image", help="path to the input image")
以上是关于如何修复“错误:需要以下参数:-i / - image”的主要内容,如果未能解决你的问题,请参考以下文章