공부/AWS
[AWS Rekognition CLI] detect-custom-labels : Unknown options 에러 (Windows)
haejang
2021. 8. 29. 19:20
728x90
728x90
문제 상황
Rekognition Custom Label Model 돌리는데 콘솔에 적힌대로 명령을 내려도 Unkwon options라며 실행이 안됨
aws rekognition detect-custom-labels ^
--project-version-arn "[project ARN]" ^
--image '{"S3Object": {"Bucket": "[버킷이름]","Name": "[데이터 path]"}}" ^
--region ap-northeast-2
해결
https://forums.aws.amazon.com/thread.jspa?threadID=322303
윈도우 명령줄에서 작은따옴표가 허용되지 않아서 아래와 같이 변경해서 사용
aws rekognition detect-custom-labels ^
--project-version-arn "[project ARN]" ^
--image "{\"S3Object\": {\"Bucket\": \"[버킷 이름]\",\"Name\": \"[데이터 path]\"}}" ^
--region ap-northeast-2
끝
728x90
728x90