반응형
django can't find new sqlite version? (SQLite 3.8.3 or later is required (found 3.7.17))
centos에서 yum 으로 설치하고 업그레이드 명령을 해봐도 안됩니다.
알고보니 centos yum repo 에 3.7.17 버전까지 밖에 업로드 안되어 있다네요..
다른 repo를 추가하면 되나? -_-?;;
결국은 그냥 sqlite 사이트가서 직접 설치하면 됩니다.
cd /opt
wget https://www.sqlite.org/2019/sqlite-autoconf-3280000.tar.gz tar -xzf sqlite-autoconf-3280000.tar.gzcd sqlite-autoconf-3280000
./configure
make
sudo make install
그랬는데도 자꾸 yum에서 3.7.17이 설치되어 있어서 그런지 자꾸 3.7.17이 설치되어 있다고 떠서 아래 방법으로 다시 함
sudo yum install sqlite-3.8.11-1.fc21.x86_64.rpm sqlite-devel-3.8.11-1.fc21.x86_64.rpm
sqlite3 --version
반응형