我正尝试将https://hub.docker.com/r/bamos/openface/映像部署到Heroku,因此我从https://github.com/cmusatyalab/openface下载了代码,并遵循了这些步骤https://devcenter.heroku.com/articles/container-registry-and-runtime。
推送和释放似乎有效,但是当我尝试访问应用程序URL时,出现此错误,为什么要通过heroku logs --tail
进行检查:
Traceback (most recent call last):
File "./demos/web/websocket-server.py", line 22, in <module>
import txaio
ImportError: No module named txaio
所以我尝试将txaio >= 2.10.0
添加到requirements.txt
,但没有任何改变。
我还能尝试什么?我在做错什么吗?