- Python PostgreSQL 教程
- Python PostgreSQL - 主页
- Python PostgreSQL - 介绍
- Python PostgreSQL - 数据库连接
- Python PostgreSQL - 创建数据库
- Python PostgreSQL - 创建表
- Python PostgreSQL - 插入数据
- Python PostgreSQL - 选择数据
- Python PostgreSQL - Where 子句
- Python PostgreSQL - Order By
- Python PostgreSQL - 更新表
- Python PostgreSQL - 删除数据
- Python PostgreSQL - 删除表
- Python PostgreSQL - Limit
- Python PostgreSQL - Join
- Python PostgreSQL - 游标对象
- Python PostgreSQL 有用资源
- Python PostgreSQL - 快速指南
- Python PostgreSQL - 有用资源
- Python PostgreSQL - 讨论
Python PostgreSQL - 介绍
PostgreSQL 是一款强大的开源对象关联数据库系统。它有超过 15 年的活跃开发阶段,经过验证的架构为其赢得了在可靠性、数据完整性和正确性方面的良好声誉。
要使用 Python 与 PostgreSQL 通信,你需要为 Python 编程安装 psycopg,它是为此提供的适配器,它的当前版本是psycog2。
psycopg2 写作的目的是要让它非常小、快速、稳定。它可以在 PIP(python 的软件包管理器)中找到
使用 PIP 安装 Psycog2
首先,确保 Python 和 PIP 已正确安装在你的系统中,而且 PIP 是最新的。
要升级 PIP,打开命令提示符并执行以下命令 −
C:\Users\Tutorialspoint>python -m pip install --upgrade pip Collecting pip Using cached https://files.pythonhosted.org/packages/8d/07/f7d7ced2f97ca3098c16565efbe6b15fafcba53e8d9bdb431e09140514b0/pip-19.2.2-py2.py3-none-any.whl Installing collected packages: pip Found existing installation: pip 19.0.3 Uninstalling pip-19.0.3: Successfully uninstalled pip-19.0.3 Successfully installed pip-19.2.2
然后,在管理员模式下打开命令提示符并执行pip install psycopg2-binary 命令,如下所示 −
C:\WINDOWS\system32>pip install psycopg2-binary Collecting psycopg2-binary Using cached https://files.pythonhosted.org/packages/80/79/d0d13ce4c2f1addf4786f4a2ded802c2df66ddf3c1b1a982ed8d4cb9fc6d/psycopg2_binary-2.8.3-cp37-cp37m-win32.whl Installing collected packages: psycopg2-binary Successfully installed psycopg2-binary-2.8.3
验证
要验证安装,创建一个示例 Python 脚本,其中包含以下行。
import mysql.connector
如果安装成功,当你执行它时,你不应收到任何错误 −
D:\Python_PostgreSQL>import psycopg2 D:\Python_PostgreSQL>
广告