django can't find new sqlite version? (SQLite 3.8.3 or later is required (found 3.7.17))

后端 未结 9 1483
既然无缘
既然无缘 2020-12-08 10:18

I\'ve cloned a django project to a Centos 7 vps and I\'m trying to run it now, but I get this error when trying to migrate:

$ python manage.py m         


        
9条回答
  •  旧巷少年郎
    2020-12-08 10:46

    another option is to use atomic repo

    wget -O - http://updates.atomicorp.com/installers/atomic |sh
    yum install  atomic-sqlite
    LD_LIBRARY_PATH='/opt/atomicorp/atomic/root/usr/lib64/' python3
    >>> import sqlite3
    >>> sqlite3.sqlite_version
    '3.8.5'
    

提交回复
热议问题