5

当我尝试运行 django 时,这就是我得到的:

    /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python manage.py runserver 8000
Error: No module named psycopg2.extensions

Process finished with exit code 1

我发现了其他类似问题的问题,但在 Mac 上没有,也没有解决方案有帮助。我没有收到其他错误,我安装了 psycopg2。我在 PyCharm 工作。这是我的设置文件(或至少它的顶部)。

ADMINS = (
    # ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': '---',                      # Or path to database file if using sqlite3.
        'USER': '---',                      # Not used with sqlite3.
        'PASSWORD': '---',                  # Not used with sqlite3.
        'HOST': 'www.-----.com',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}
4

1 回答 1

4

正如您在源代码中看到的,Django 大量使用了 psycopg2.extensions 模块。此外,扩展模块正式包含在 psycopg2 中。所以,我认为你以错误的方式安装了 psycopg。

这是安装页面的正确位置:http: //initd.org/psycopg/install/

我建议你使用virtualenv

于 2012-06-24T05:49:19.620 回答