반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- GIT
- Kotlin
- PANDAS
- gas
- matplotlib
- Apache
- PostgreSQL
- c#
- Github
- 파이썬
- Redshift
- Tkinter
- google apps script
- Excel
- hive
- array
- Java
- Google Excel
- dataframe
- Mac
- string
- SQL
- django
- math
- Python
- Google Spreadsheet
- PySpark
- list
- numpy
Archives
- Today
- Total
달나라 노트
Python psycopg2 : Error: pg_config executable not found (psycopg2 설치 에러) 본문
Python/Python ETC
Python psycopg2 : Error: pg_config executable not found (psycopg2 설치 에러)
CosmosProject 2022. 2. 10. 19:01728x90
반응형
psycopg2를 새로운 컴퓨터에서 설치하거나 또는 version이 업그레이드되거나 한다면 아래와 같은 Error가 발생할 때가 있습니다.
Error: pg_config executable not found
여러 가지 상황이 있겠지만 위 에러는 주로 psycopg2 가 설치되기 전 또는 psycopg2가 업그레이드되면서 psycopg2에 필요한 다른 모듈들을 찾지 못하기 때문일 가능성이 큽니다.
Python interpreter 사용
pip install postgresql
Conda interpreter 사용
conda install postgresql
어떤 interpreter를 사용하고 있는지에 따라 위 2개의 명령어 중 하나를 terminal에 입력하여 postgresql 라이브러리를 설치해줍시다.
그리고 다시 아래 명령어를 terminal에 입력해서 psycopg2 라이브러리를 설치하면 정상적으로 설치가 될 것입니다.
pip install psycopg2
728x90
반응형
'Python > Python ETC' 카테고리의 다른 글
Python anaconda : anaconda python terminal commands (0) | 2022.02.11 |
---|---|
Pycharm : commit view 조절, Pycharm commit code diff view (0) | 2022.02.11 |
Python pyhive : access hive and run query using python, python으로 hive query 돌리기 (0) | 2022.01.20 |
Python : qrcode, pyqrcode (Python으로 QR Code 만들기, Python QR Code 생성) (0) | 2021.11.11 |
Python phonenumbers : Python으로 핸드폰번호의 간단한 정보 추출해보기 (0) | 2021.10.31 |
Comments