engine 생성시 오류 해결법
286
0
conn_string = 'postgresql://postgres:xxxxxx@localhost:5432/postgres'
postgres_engine = create_engine(conn_string)
실행시 오류 뜨면 아래 인스톨부터 진행해보세요.
pip install psycopg2
답변 1
286
conn_string = 'postgresql://postgres:xxxxxx@localhost:5432/postgres'
postgres_engine = create_engine(conn_string)
실행시 오류 뜨면 아래 인스톨부터 진행해보세요.
pip install psycopg2
답변 1