Pythonに最新のSQLiteを使用させる方法


0

私はすでに次のことをしました:

1. Going over to this url: https://sqlite.org/download.html I will download 'sqlite-autoconf-3260000.tar.gz' which is version 3.26.0 
2. assuming it's in my Downloads folder I will open my terminal and type in the following commands
3. I am assuming you have build-essentials installed if not run
# sudo apt install build-essentials -y
# cd ~/Downloads
# tar -xvf sqlite-autoconf-3260000.tar.gz -C /tmp/
# cd /tmp/sqlite-autoconf-3260000
# ./configure
# make
# make install
# make clean
close your terminal and open it again
# sqlite3 --version

sqlite3 --versionを実行すると、3.26.0を使用していると表示されます。 しかし私がするとき:

Import sqlite3
sqlite3.sqlite_version

私は3.22.0(以前のインストールバージョン)を使っていると言っています Pythonに最新バージョンを使用させる方法を誰かが知っていますか? 私はubuntu 16.04を使っています


1
私はpythonが組み込みのsqliteモジュールを使用していると思いますが、おそらくこれは役に立つでしょう stackoverflow.com/a/26369430/3417978
MC10

いいえ、はい、組み込みのものはOSにインストールされたsqlite3を使用する単なるハンドラです
Thiplol
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.