반응형
오류 1
맥 OS에서, pip install chatterbot 명령어를 실행하는 과정에서 다음과 같은 오류가 발생하였다.
pip subprocess to install build dependencies did not run successfully.│ exit code: 1╰─> See above for output.
해결 방법
pip --version으로 확인해보니, 현재 버전은 23.1.2로 최신 버전이었다.
pip install pip==21.3.1
명령어로 버전을 낮추고 다시 "pip install chatterbot" 명령을 실행하니 정상적으로 설치됨.
오류 2
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/yaml/constructor.py", line 126, in construct_mapping
if not isinstance(key, collections.Hashable):
AttributeError: module 'collections' has no attribute 'Hashable'
해결 방법
PyYaml 5.4.1 혹은 5.x 버전 설치
spacy en 설치 오류 해결
python3 -m spacy download en
python3 install msgpack==0.5.6
참고 링크
반응형
'오류' 카테고리의 다른 글
NLTK download SSL: Certificate verify failed (0) | 2023.06.30 |
---|---|
JWT Error] io.jsonwebtoken.security.SignatureException: JWT signature does not match locally computed signature. (0) | 2023.06.13 |
SourceTree] Invalid username or password. (0) | 2023.06.09 |
MacOS] slack 알림 안뜨는 오류 (0) | 2023.06.08 |
MySQL] Unhandled exception: 'ascii' codec can't decode byte (mac) (0) | 2023.06.08 |