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
            Asked
            
        
        
            Active
            
        
            Viewed 3,111 times
        
    2 Answers
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.
 
    
    
        Amit Kumar
        
- 830
- 7
- 17
- 
                    1
- 
                    Here are the instructions: https://www.guru99.com/download-install-sqlite.html – Amit Kumar Apr 08 '20 at 10:26
