Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 캐치카페
- 백준
- Git
- 맥북
- AI 경진대회
- ChatGPT
- ubuntu
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
- 편스토랑
- programmers
- Baekjoon
- 프로그래머스
- github
- 편스토랑 우승상품
- 데이콘
- 코로나19
- Kaggle
- 자연어처리
- 프로그래머스 파이썬
- SW Expert Academy
- Docker
- 우분투
- PYTHON
- gs25
- hackerrank
- leetcode
- 파이썬
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[Python] ImportError: cannot import name 'delayed' from 'sklearn.utils.fixes' (/usr/local/lib/python3.7/dist-packages/sklearn/utils/fixes.py) 해결방법 본문
Programming/Python
[Python] ImportError: cannot import name 'delayed' from 'sklearn.utils.fixes' (/usr/local/lib/python3.7/dist-packages/sklearn/utils/fixes.py) 해결방법
솜씨좋은장씨 2021. 6. 23. 09:32728x90
반응형
오랜만에 Dacon 대회를 도전해보면서 baseline 코드에 StratifiedKFold를 적용해서 결과를 내보고자
from sklearn.model_selection import StratifiedKFold
Colab에서 위와 같이 import를 시도하였는데
ImportError: cannot import name 'delayed' from 'sklearn.utils.fixes'
(/usr/local/lib/python3.7/dist-packages/sklearn/utils/fixes.py)
위와 같은 오류가 발생하였습니다.
이를 해결하는 방법은 다음과 같습니다.
!pip install delayed
delayed를 pip 를 활용하여 설치한 다음
런타임 다시시작을 한 다음에 다시 import를 하게되면 정상적으로 import가 가능합니다.
읽어주셔서 감사합니다.
그럼 즐거운 개발하세요~
'Programming > Python' 카테고리의 다른 글
[Python] sourcedefender를 활용하여 코드를 암호화 하는 방법 (1) | 2021.07.08 |
---|---|
[Python] OpenCV를 활용하여 도형을 그리는 다양한 방법! (0) | 2021.07.08 |
[Python] 문자열 split() 과 split(" ") 차이 알아보기! (0) | 2021.05.21 |
ImportError: cannot import name 'DependencyWarning' from 'urllib3.exceptions' 해결 방법 (0) | 2021.05.17 |
[Python] Shapely, Geopandas 사용시 발생하는 오류 해결방법 (0) | 2021.05.08 |
Comments