📜  Python PostgreSQL-简介

📅  最后修改于: 2020-11-07 08:49:57             🧑  作者: Mango


安装

PostgreSQL是一个功能强大的开源对象关系数据库系统。它拥有超过15年的积极开发阶段,并且其可靠的体系结构在可靠性,数据完整性和正确性方面赢得了极高的声誉。

要使用Python与PostgreSQL通信,您需要安装psycopg,这是为Python编程提供的适配器,其当前版本为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>