0

我想在 heroku 上部署 Django 应用程序。当我尝试同步数据库本地时,我收到错误消息:

ImportError: Could not import settings 'aplikacjaKZ.settings' (Is it on sys.path?): No    module named dj_database_url

我安装了 dj 数据库 url。这是我的需求文件:

    Django==1.5.1
    argparse==1.2.1
    distribute==0.6.34
    dj-database-url==0.2.2
    dj-static==0.0.5
    django-toolbelt==0.0.1
    gunicorn==17.5
    psycopg2==2.5.1
    static==0.4
    wsgiref==0.1.2

这是我的设置:

DATABASES = {'default':  dj_database_url.config(default='postgres://localhost')}

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', 
        'NAME': '/var/db/appKZ',        
        'USER': '',
        'PASSWORD': '',
        'HOST': '',                      
        'PORT': '',             
    }
}
4

1 回答 1

3

heroku 很友好地在这里详细解释了这个过程 https://devcenter.heroku.com/articles/getting-started-with-django

从错误来看,似乎 dj 数据库 url 确实不在系统路径上,

以下是您应该注意的事项

  1. 使用安装 requirements.txt 文件中的依赖项

    pip install -r requirements.text

  2. 仔细检查您是否已激活 venv。你可以通过运行来做到这一点

    venv/scripts/activate.bat # 假设“venv”是你的虚拟环境的名字

于 2013-12-11T13:52:06.360 回答