0

How to upgrade sqlite3 version? I use pycharm to code in windows 10. The output of this print(sqlite3.sqlite_version) is 3.21.0

vetragor
  • 21
  • 1
  • 2

2 Answers2

1

Download the latest release from http://www.sqlite.org/download.html and manually copy sqlite3.dll into Python's DLLs subfolder.

According to:

Peter
  • 3,322
  • 3
  • 27
  • 41
  • If you're using Anaconda on Windows 10, the relevant DLL for sqlite3 will be in `Library/bin` instead of `DLLs`. – ergodiclife Nov 29 '22 at 10:20
-1

You should be able to find the binaries for your system on the official website's download page.

https://www.sqlite.org/download.html

Amit Kumar
  • 830
  • 7
  • 17