当我试图使用命令py -2 -m pip install opendr在Windows中安装opendr时,会得到错误Exception: Unable to get url: http://files.is.tue.mpg.de/mloper/opendr/osmesa/OSMesa.Windows.AMD64.zip,如果使用py -3 -m pip install opendr,则会得到错误消息SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Downloading %s" % osmesa_fname)?
我现在能做什么?我基本上是在尝试实现https://github.com/akanazawa/hmr
发布于 2018-10-22 20:20:36
异常:无法获得url:http://files.is.tue.mpg.de/mloper/opendr/osmesa/OSMesa.Windows.AMD64.zip
下载前的opendr 尝试打开本地OSMesa。如果你知道从哪里得到文件,你自己下载它。如果你不这么做的话,你可能就倒霉了。代码太老了,提到了不再可用的URL。
SyntaxError:调用“print”时缺少括号
这意味着代码只适用于Python2 2。setup.py说,它只适用于Python2.7。
https://stackoverflow.com/questions/52919532
复制相似问题