반응형
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 | 29 | 30 | 31 |
Tags
- 데이터베이스 공부
- IT공부
- 파이썬
- 자기개발서
- 명동
- 데이터 분석
- 독서후기
- 카페추천
- 오블완
- 패스트캠퍼스
- 데이터분석
- 파이썬 오류 해결
- 책 추천
- 파이썬 공부
- 독후감
- 내돈내산
- 책 리뷰
- 자기개발
- 티스토리챌린지
- 독서
- Python
- 컴퓨터공학
- 책추천
- 실행력 높이기
- 존맛탱
- 강의후기
- 자기계발
- 데이터엔지니어링
- 맛집
- 중곡역
Archives
- Today
- Total
Émile
[파이썬 오류해결] pip install hangul-utils 안될때 본문
반응형
> pip install hangul-utils
Collecting hangul-utils
Using cached hangul_utils-0.4.5-py3-none-any.whl (20 kB)
Requirement already satisfied: tqdm in c:\users\ahdcj\appdata\local\programs\python\python311\lib\site-packages (from hangul-utils) (4.66.1)
Requirement already satisfied: six in c:\users\ahdcj\appdata\local\programs\python\python311\lib\site-packages (from hangul-utils) (1.16.0)
INFO: pip is looking at multiple versions of hangul-utils to determine which version is compatible with other requirements. This could take a while.
Using cached hangul_utils-0.4.4-py3-none-any.whl (20 kB)
Using cached hangul_utils-0.4.3-py3-none-any.whl (20 kB)
Using cached hangul_utils-0.4.2-py3-none-any.whl (20 kB)
Using cached hangul_utils-0.4.1-py3-none-any.whl (20 kB)
Using cached hangul_utils-0.4-py3-none-any.whl (20 kB)
Using cached hangul-utils-0.3.0.tar.gz (4.3 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [18 lines of output]
C:\Users\ahdcj\AppData\Local\Temp\pip-build-env-oq8uff_7\overlay\Lib\site-packages\setuptools\[dist.py:498](http://dist.py:498/): SetuptoolsDeprecationWarning: Invalid dash-separated options
!!
```
********************************************************************************
Usage of dash-separated 'description-file' will not be supported in future
versions. Please use the underscore name 'description_file' instead.
This deprecation is overdue, please update your project and remove deprecated
calls to avoid build errors in the future.
See <https://setuptools.pypa.io/en/latest/userguide/declarative_config.html> for details.
********************************************************************************
!!
opt = self.warn_dash_deprecation(opt, section)
error in hangul-utils setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier)
mecab-python==0.996-ko-0.9.2
~~~~~~~^
[end of output]
```
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
우선 빠르게 해결법 부터 알려드림
pip install hangul_utils==0.2
현재 버전들이 안맞아서 그런거 같다...
사실 오류내용도 정확히 보지도 않고 Konlpy가 자바문제가 많았어서, 자바 환경변수 설정 문제인줄 알고 이것저것 했는데 아니었다ㅋㅋ
직장동료피셜로 Konlpy가 원래는 자바기반이었는데, 이제 파이썬기반으로도 다시 만들어져서 그런 문제는 없다고...ㅎㅎ
암튼 저처럼 저런 문제 겪으시는 분들은 해결하시길 바랍니다ㅎㅎ
반응형
'IT공부' 카테고리의 다른 글
[MYSQL/convert_tz] timestamp 시간 더하기 (2) | 2023.11.19 |
---|---|
[파이썬 오류 해결] matplotlib 한글 깨짐 (0) | 2023.11.04 |
[맥북/파이썬/cv2] TypeError: 'numpy._DTypeMeta' object is not subscriptable 해결법 (0) | 2023.09.15 |
[맥북/파이썬/fastapi] Error loading ASGI app. Could not import module "mail" 에러 해결법 (0) | 2023.07.06 |
[패스트캠퍼스강의후기] 한 번에 끝내는 데이터 엔지니어링 초격차 패키지 Online (내돈내산) (0) | 2023.07.03 |
Comments