일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Tkinter
- Google Excel
- 파이썬
- list
- Excel
- django
- Apache
- math
- string
- Mac
- Python
- Github
- numpy
- c#
- Kotlin
- matplotlib
- Java
- google apps script
- array
- Redshift
- PySpark
- Google Spreadsheet
- gas
- dataframe
- hive
- GIT
- SQL
- PANDAS
- PostgreSQL
- Today
- Total
목록Server (2)
달나라 노트
tableauserverclient를 사용하다보면 간혹 코드는 정상인데 제대로 작동되지 않을 때가 있습니다. RequestOptions를 이용해서 특정 Project class를 얻어오는 코드를 작성했는데 에러가 발생합니다. import tableauserverclient as TSC id = 'user_1' pw = 'pw_1' url_tableau = 'https://tableau-server.test.com' server = TSC.Server(url_tableau) tableau_auth = TSC.TableauAuth(id, pw) server.auth.sign_in(tableau_auth) req_option = TSC.RequestOptions() req_option.filter.add(TS..
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 라이브러리를 설치해줍시다..