일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- GIT
- math
- numpy
- Apache
- 파이썬
- PySpark
- Mac
- Kotlin
- hive
- list
- Tkinter
- c#
- array
- gas
- PANDAS
- Google Excel
- Github
- Google Spreadsheet
- Excel
- dataframe
- Java
- google apps script
- Redshift
- string
- PostgreSQL
- django
- SQL
- matplotlib
- Today
- Total
목록Version (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..
Python을 사용하다보면 여러 library들의 version이 충돌을 일으켜 정상적으로 일으키지 않을 때가 있습니다. 이런 경우 library의 버전을 downgrade하거나 upgrade해줘야하는데 현재 python version에 따라 설치가 불가능한 library version도 있습니다. 이런 경우에는 Python 자체의 version을 조절해줘야 하죠. conda install python=version conda interpreter를 사용할 때 위처럼 terminal에 입력해주면 python version이 위 command에서 명시한 version으로 변경됩니다. conda install python=3.9.3 위처럼 원하는 python version을 입력해주면 python versi..