본문 바로가기

반응형

전체 글

(130)
[에러 해결] ERA5 dataset 다운 받을 때 API 설정 때 404 에러가 뜨면 / api url을 변경해야 한다 climate ERA5 데이터셋 활용  import cdsapidataset = "reanalysis-era5-single-levels"request = { "product_type": ["reanalysis"], "data_format": "grib", "download_format": "unarchived"}client = cdsapi.Client()client.retrieve(dataset, request).download()  climate dataset을 다운받으려고 했다 위와 같은 코드를 활용하면 되는데, 계속 404 url 에러가 났다    https://microsoft.github.io/aurora/example_era5.html Example: Predictions fo..
[에러 해결] SSLCertVerificationError max entries exceed with url / verify=False 에러 SSLCertVerificationError requests package를 쓰는 client에서 오류  ---------------------------------------------------------------------------SSLCertVerificationError                  Traceback (most recent call last)생략.. site-packages/cads_api_client/api_client.py:69: UserWarning: HTTPSConnectionPool(host='cds-beta.climate.copernicus.eu', port=443): Max retries exceeded with url: /api/catalogue/v1/m..
[에러 해결] error: subprocess-exited-with-error / 하나하나씩 설치하기 에러: pip subprocess error   Pip subprocess error:  error: subprocess-exited-with-error    × Getting requirements to build wheel did not run successfully.  │ exit code: 1  ╰─> [42 lines of output]      reading from setup.cfg...       Conda 환경을 설치하는 도중 pip subprocess error가 나타났다. 원인 분석을 위해 한번에 environment.yaml 파일을 활용하지 않고 필요한 패키지를 단계별로 설치해보았다       에러 해결 패키지 제대로 쓰기  conda create -n envname python=3..

반응형