mjysci
mjysci
和 @fraee 的情况类似。同样的脚本在x86上更新成功,树莓派4b报错"Specified signature is not matched with our calculation."。 对比了两边的输出,`String to Signed`和`Request addr`中,除了应该不一样的内容:`SignatureNonce`和`Timestamp`(后者还有`Signature`),其他都一致。 两边执行同样的命令: ```bash /bin/echo -n "testid" | openssl dgst -binary -sha1 -hmac "testsecret&" | openssl enc -base64...
> String to Signed 一致,Sign 不一致就恰好说明是 openssl 的问题了,String to Signed 是脚本计算的,Sign 是使用 openssl 算的。 不过以下命令在两个系统中的输出一致: ```bash /bin/echo -n "testid" | openssl dgst -binary -sha1 -hmac "testsecret&" | openssl enc -base64...
[This](https://github.com/NVIDIA-AI-IOT/trt_pose/pull/4) may help.
I followed the steps set up a reverse proxy via nginx myself. And it turns out the API url [https://atom.io/api/](https://atom.io/api/) no longer working. It's 404 if visit it directly and...
@maninalift Thanks for your reply! I'm runing nginx in a VPS locate in Ohio, USA. I'm sure it's not blocked. The problem is the API url [https://atom.io/api/](https://atom.io/api/) is no longer...
如果用的是conda管理环境: 首先用`conda list | grep cuda`确定该环境cuda运行时版本,如`11.7`。 然后从nvidia源安装`cudatoolkit`: ``` conda install cudatoolkit=11.7 -c nvidia ```