반응형
요즘 오류와 관련된 글만 올리는 거 같지만 어쩔 수 없다..
코랩에서 pycaret을 사용하는데 제목과 같은 에러가 났다. (22.07.05 기준)
아래 코드를 실행하려하면, 에러가 나온다.
from pycaret.classification import *
JinJa2라는 라이브러리를 import 하거나 새로 설치해도 해결이 되지 않았다.
해결 방법은,, markupsafe의 버전을 강제로 바꿔주면 된다.
!pip install markupsafe==2.0.1
그 후에 아래처럼 실행해주면 끝!
import jinja2
from pycaret.classification import *
반응형
'기타' 카테고리의 다른 글
[오류] zsh: command not found: python (Mac OS) (0) | 2022.11.13 |
---|---|
[오류] load() missing 1 required positional argument: 'Loader' (0) | 2022.10.03 |
[오류] module 'librosa' has no attribute 'display' (0) | 2022.07.03 |
[오류] AttributeError: 'Sequential' object has no attribute 'predict_classes' (0) | 2022.06.27 |
API(Application Programming Interface)란? (0) | 2021.09.09 |