curl不适用于Windows,但适用于Mac OSX

问题描述 投票:0回答:1

我是tensorflow和window的新手

我将curl发送到Linux上的tensorflow服务器,并且在OSX上使用过。

curl -d '{"instances":[{"image":{"b64":"'"$(base64 ./test_input.png)"'"}}]}' -X POST http://localhost:8501/v1/models/ocr:predict

返回

{
    "predictions": [[44032, 44172]
    ]
}%

但是curl在Windows 10上不起作用,我不知道为什么

这是错误消息

curl: (3) [globbing] unmatched close brace/bracket in column 19
{ "error": "JSON Parse error: Invalid value. at offset: 0" }
tensorflow curl tensorflow-serving
1个回答
0
投票

您是否尝试过如下所示为嵌套双引号]添加转义字符? Windows和Macos完全不同。

curl -d'{“ instances”:[{“ image”:{“ b64”:“'\” $(base64 ./test_input.png)\“'”}}]}}'' -X POST http:// localhost:8501 / v1 / models / ocr:predict
© www.soinside.com 2019 - 2024. All rights reserved.