ERROR: Could not install packages due to an OSError

데이터 분석/[Python] Troubleshooting

ERROR: Could not install packages due to an OSError

INCHELIN 2021. 11. 16. 10:11
728x90
pip install git+git://github.com/haven-jeon/PyKoSpacing.git

한국어 전처리 패키지를 conda에서 설치하려고 하는데 다음과 같은 에러메세지가 출력되었습니다

ERROR: Could not install packages due to an OSError

 

해결!!

1. Anaconda Prompt를 관리자실행으로 열기

2. --user 옵션 주기

pip install --user git+git://github.com/haven-jeon/PyKoSpacing.git

Successfully installed ~~ 라는 메세지와 함께 패키지 설치가 성공했습니다.

728x90