This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ZenSkunkworx
Recipients ZenSkunkworx
Date 2021-02-11.20:23:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613075038.27.0.260449225949.issue43201@roundup.psfhosted.org>
In-reply-to
Content
Running on a new, updated Windows 10 machine with no virtual environment. After removing all previous Python installations, rebooting and performing a fresh install if Python 3.9.1. I run the python console and type:
import sqlite3

I receive the following error:
Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec  7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Program Files\Python39\lib\sqlite3\__init__.py", line 23, in <module>
    from sqlite3.dbapi2 import *
  File "C:\Program Files\Python39\lib\sqlite3\dbapi2.py", line 27, in <module>
    from _sqlite3 import *
ImportError: DLL load failed while importing _sqlite3: The specified module could not be found.


I verified that the sqlite3.dll file does exist in C:\Program Files\Python39\DLLs
History
Date User Action Args
2021-02-11 20:23:58ZenSkunkworxsetrecipients: + ZenSkunkworx
2021-02-11 20:23:58ZenSkunkworxsetmessageid: <1613075038.27.0.260449225949.issue43201@roundup.psfhosted.org>
2021-02-11 20:23:58ZenSkunkworxlinkissue43201 messages
2021-02-11 20:23:58ZenSkunkworxcreate