我在 heroku 上运行一个 celery worker 并且在启动 worker 时我总是得到一个错误:
ImportError: No module named gdbm
我已经通过在 heroku 上运行 python 并尝试导入 gdbm 来确认这一点:
$ heroku run python
Running `python` attached to terminal... up, run.1960
Python 2.7.8 (default, Jul 9 2014, 20:47:08)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gdbm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named gdbm
>>> exit()
我怎样才能在heroku上安装这个模块?我需要添加一个特定的包requirements.txt
吗?如果有,是什么版本?
谢谢你的帮助!