반응형
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 |
Tags
- 파이썬
- Python
- PANDAS
- dataframe
- list
- math
- Google Spreadsheet
- django
- SQL
- matplotlib
- string
- hive
- c#
- array
- numpy
- Apache
- Mac
- GIT
- Github
- Java
- Excel
- Tkinter
- Redshift
- PySpark
- Kotlin
- google apps script
- Google Excel
- gas
- PostgreSQL
Archives
- Today
- Total
목록urlopen error (1)
달나라 노트
Python Basic : urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate
여러 library를 이용해 python 코드를 작성하고 실행하면 간혹 아래와같은 에러가 발생할 때가 있습니다. urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate SSL 인증에 뭔가 문제가 있어서 위 에러가 발생하는건데 해결방법은 2가지가 있습니다. Solution 1. pip install certifi terminal에 위 command를 실행시켜 certifi를 설치해줍니다. 간단한 방법이지만 저는 이걸로 해결이 안되더라구요. Solution 2. import ssl ssl._create_default_https_context = ssl._creat..
Python/Python Basic
2022. 7. 12. 19:42