[PYTHON] Django PostgreSQL Installation, Datenbankaufbau

■ Umgebung

Windows10home  Python3.7  PostgresSQL10.12

■ Installations- / Einstellverfahren

① PostgresSQL-Download und Installation (weggelassen)

② Umgebungsvariablen ändern

"Systemsteuerung" - "System" - "Detaillierte Systemeinstellungen" + "Umgebungsvariablen"

3Path edit PostgresQL hinzugefügt

image.png

④ Überprüfen Sie die PSQL-Version

 C:\python_project\venv_python_dev\Private_Diary_project>psql --version
psql (PostgreSQL) 10.12

■ Datenbankerstellung

① psql login

psql -U postgres

C:\python_project\venv_python_dev\Private_Diary_project>psql -U postgres

② Datenbank erstellen

create database XXXXXXXXX;

postgres=# create database XXXXXXXXXXXXX_db;

CREATE DATABASE wird angezeigt.

③ Überprüfen Sie die Datenbankliste. .. ich will

psql=# |  Ich kann den vertikalen Balken nicht hören!

④ Raus aus psql

psql=# \q

■ Installieren Sie den Treiber (psycopg2) für die Python-Verbindung

① Rohrinstallation

pip install psycopg2-binary

C:\python_project\venv_python_dev\Private_Diary_project>pip install psycopg2-binary

das ist alles

Recommended Posts

Django PostgreSQL Installation, Datenbankaufbau
Django Umweltbau
Django Umweltbau
Installationsort von Django
Installationsverfahren für PostgreSQL 10.0
Bau der Django-Projektumgebung
Django Entwicklungsumgebung Bau Memo
Docker + Django + Umgebungskonstruktion reagieren
Django Installation und Funktionsprüfung
Django Projekt Entwicklungsumgebung Bau
Mac + Eclipse (PyDev) + Django-Umgebungskonstruktion
Python Practice_Virtual Environment Setup ~ Django-Installation
[Django] Memorandum of Environment Construction Procedure
[Für Anfänger] Django -Entwicklungsumgebung Bau-
[Anfänger] Von der Django Query-Datenbank abrufen