问题描述
在数据库库文件中写入一条记录后,在pycharm的terminal终端下执行查看表的命令出错
执行语句为:
连接数据库报错
python manage.py dbshell
CommandError: You appear not to have the sqlite3 program installed or on your path.
Error:…
# python创建SQLite数据库,并插入记录
import sqlite3
import os# 1. create table and database
dbPath data.sqlite
if not os.path.exists(dbPath):conn sqlite3.connect(dbPath)c conn.cursor()c.excute(create table persons(id int primart key not null,n…
之前在内网centos服务器已经离线安装python3,建立虚拟环境并安装需要用到的库,安装好后将项目copy过来,运行时报错:
ModuleNotFoundError: No module named _sqlite3在centos7环境中常规安装python3的话无法支持sqlite3,所以在安…