Jupyter Notebook으로 PostgreSQL을 설정하는 방법
첫 번째 단계, 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에 로그인하여 슈퍼 사용자 역할 사용자 생성
개체 > 만들기 > 로그인/그룹 역할로 이동합니다.
참조 : Connect To PostgreSQL Database Server
Reference
이 문제에 관하여(Jupyter Notebook으로 PostgreSQL을 설정하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kullawattana/how-to-setup-postgresql-with-jupyter-notebook-1h21텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)