📜  为 python mac 安装 postgres - Python (1)

📅  最后修改于: 2023-12-03 15:06:16.015000             🧑  作者: Mango

Python 在 Mac 上安装 Postgres

在 Mac 上安装 Postgres 数据库是 Python 应用程序开发的一个基本步骤。在这个教程中,我们将介绍如何在 Mac 上安装 Postgres,并在 Python 应用程序中使用它。

Step 1:安装 Homebrew

Homebrew 是一个流行的 Mac 包管理器,它将帮助我们在 Mac 上安装 Postgres。如果你还没有安装 Homebrew,可以参考官方文档进行安装操作。

Step 2:安装 Postgres

使用 Homebrew,我们可以轻松安装 Postgres,只需在命令行输入以下命令即可:

brew install postgresql
Step 3:启动 Postgres

成功安装 Postgres 后,我们可以使用以下命令启动 Postgres 服务器:

brew services start postgresql

我们也可以使用以下命令停止 Postgres 服务器:

brew services stop postgresql
Step 4:设置 Postgres 用户

默认情况下,Postgres 的超级用户为“postgres”,我们需要为其设置密码。我们可以使用以下命令登录 Postgres:

psql postgres postgres

接下来,我们可以使用以下命令设置密码:

ALTER USER postgres PASSWORD 'new_password';
Step 5:连接 Postgres 数据库

在 Python 应用程序中,我们可以使用 psycopg2 模块来连接 Postgres 数据库。在使用 psycopg2 之前,请确保已在系统上安装了该模块。安装完毕后,我们可以使用以下 Python 代码连接到 Postgres 数据库:

import psycopg2

conn = psycopg2.connect(
    host="localhost",
    database="postgres",
    user="postgres",
    password="new_password",
    port="5432"
)

这个 Python 代码片段需要使用 psycopg2 模块连接到 Postgres 数据库。使用 conn 对象可以进行数据库操作,比如创建表格,插入数据等等。

以上就是在 Mac 上安装并使用 Postgres 的基本步骤。祝你成功!