Centos

如何從 python 更新 sqlite3?

  • February 15, 2019

如何從 python 更新 sqlite3?

我在使用舊版 Slite3 for python3.6 時遇到問題。

我需要升級到版本 3.22.0 或最新版本

root@server01# python3.6m
Python 3.6.7 (default, Dec  5 2018, 15:02:16)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-23)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
>>> sqlite3.sqlite_version_info
(3, 6, 20)
>>> quit()

sqlite3現在進入標準庫。你必須更新你的python。如果要保留系統的 python 版本,可以使用虛擬環境。

引用自:https://serverfault.com/questions/953845