欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

centos和ubuntu下安装mysql for django出现的问题

程序员文章站 2022-04-16 19:32:02
...

命令为easy_install MySQL-python 首先是“error: Setup script exited with error: command 'gcc' failed with exit status 1” 具体原因是没有安装python-dev 但是在centos下python-dev的名字为python-devel 安装后即可成功安装 django setting.py文件中数

命令为easy_install MySQL-python

首先是“error: Setup script exited with error: command 'gcc' failed with exit status 1”

具体原因是没有安装python-dev

但是在centos下python-dev的名字为python-devel

安装后即可成功安装


django setting.py文件中数据库配置为

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME':   'db_name',
        'USER' :  'root',
        'PASSWORD':'password',
        'HOST'    :'localhost',
    }
}