Jupyter Notebook으로 PostgreSQL을 설정하는 방법

3499 단어
이와 같은 요약 단계로 Jupyter Notebook으로 PostgreSQL(RDBMS)을 설정하는 방법을 결론지어야 합니다.

첫 번째 단계, Python에서 사용하기 위해 python 3.9.1 설치하거나 Python 구성에 문제가 있는 경우 how to uninstall python 링크를 따라갈 수 있습니다.

아래 코드 작성

import psycopg2
from psycopg2 import Error

try:
    # Connect to an existing database
    connection = psycopg2.connect(user="myuser",
                                  password="mypass",
                                  host="127.0.0.1",
                                  port="5432",
                                  database="postgres")

    # Create a cursor to perform database operations
    cursor = connection.cursor()
    # Print PostgreSQL details
    print("PostgreSQL server information")
    print(connection.get_dsn_parameters(), "\n")
    # Executing a SQL query
    cursor.execute("SELECT version();")
    # Fetch result
    record = cursor.fetchone()
    print("You are connected to - ", record, "\n")

    #Doping EMPLOYEE table if already exists.
    cursor.execute("DROP TABLE IF EXISTS CRICKETERS")

    #Creating table as per requirement
    sql =''' 
    CREATE TABLE CRICKETERS (
    First_Name VARCHAR(255),
    Last_Name VARCHAR(255),
    Age INT,
    Place_Of_Birth VARCHAR(255),
    Country VARCHAR(255));
    '''
    cursor.execute(sql)
    print("Table created successfully........")
    connection.commit()
    #Closing the connection
    connection.close()

except (Exception, Error) as error:
    print("Error while connecting to PostgreSQL", error)
finally:
    if (connection):
       cursor.close()
       connection.close()
       print("PostgreSQL connection is closed")


PgAdmin4의 필드 결과



두 번째 단계, $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"homebrew 설치

세 번째 단계, Windows, MacOS 또는 Linux에 설치Jupyter Notebook하고 터미널에 설치$ pip install notebook를 시도한 후 실행$ jupyter notebook
네 번째 단계, 터미널에 설치psycopg2 및 설치$ pip install psycopg2-binary를 시도합니다.

5단계, 설치PostgreSQL를 통해 PgAdmin4에 로그인하여 슈퍼 사용자 역할 사용자 생성
개체 > 만들기 > 로그인/그룹 역할로 이동합니다.
  • psql 터미널에 이름이 지정된 "사용자 이름"을 만듭니다.
  • 사용자의 비밀번호를 생성합니다.
  • 모든 권한을 부여하고 정보를 저장합니다.
  • psql 터미널에서 비밀번호를 즉시 시도하십시오.



  • 참조 : Connect To PostgreSQL Database Server

    좋은 웹페이지 즐겨찾기