You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing Python 3.11.9 into an ubuntu:22.04 image:
/opt/python/3.11.9/bin/python -c 'import sqlite3'#> Traceback (most recent call last):#> File "<string>", line 1, in <module>#> File "/opt/python/3.11.9/lib/python3.11/sqlite3/__init__.py", line 57, in <module>#> from sqlite3.dbapi2 import *#> File "/opt/python/3.11.9/lib/python3.11/sqlite3/dbapi2.py", line 27, in <module>#> from _sqlite3 import *#> ImportError: libsqlite3.so.0: cannot open shared object file: No such file or directory
Resolved by installing sqlite3.
apt-get install -y sqlite3
The text was updated successfully, but these errors were encountered:
After installing Python 3.11.9 into an ubuntu:22.04 image:
Resolved by installing sqlite3.
The text was updated successfully, but these errors were encountered: