美文网首页
django使用python manage.py startap

django使用python manage.py startap

作者: 腿长袖子短 | 来源:发表于2017-12-14 10:04 被阅读891次
    • !!!以下方法适用于数据库为mysql的错误
    • 使用django的python manage.py startapp book创建一个book应用时报错:
    Traceback (most recent call last):
      File "D:\python\lib\site-packages\django\db\backends\mysql\base.py", line 24, in <module>
        import MySQLdb as Database
    ModuleNotFoundError: No module named 'MySQLdb'
    

    针对这种 ''MySQLdb''的报错,如果你已经安装了pymysql,那么只需要在项目目录下的"__ init__.py"文件中写下如下代码:

    import pymysql
    pymysql.install_as_MySQLdb()
    

    相关文章

      网友评论

          本文标题:django使用python manage.py startap

          本文链接:https://www.haomeiwen.com/subject/egphwxtx.html