Eatchu space/삽질기록

Python torchtext 설치하기 (오류 잡기)

eatchu 2021. 6. 15. 14:48
반응형

 

 

1. pip install torchtext (or pip3 install torchtext)

 -  cmd창에서는 실행이 되는데 jupyter에서는 해당 module이 없다고 error

 

2. pip install https://github.com/pytorch/text/archive/master.zip

 - 깃허브에서 직접 깔기도 역시 error 

 

3. conda install torchtext

 - 위의 pip install과 같은 문제

 

4. conda install -c pytorch torchtext

 - [winerror 127] 지정된 프로시저를 찾을 수 없습니다.

 - 이렇게 실행하니 pytorch버전이 바뀌면서 pytorch까지 같이 실행오류

 

5. conda install pytorch==1.5.0 torchvision==0.6.0 cpuonly -c pytorch

 - 드디어 해결!

 - 위 4번 오류가 pytorch 버전 문제라고 1.5.1버전 이하를 설치하라고해서 1.5.0버전을 재설치했더니 해결되었다

 - torch해결이 되면서 앞서 계속 설치를 시도했던 torchtext도 해결 완.

 - window 노트북을 사용하고 있어서 window버전에 cpu only를 사용

 

 

각자에 맞는 os와 버전 확인은 여기서

https://pytorch.org/get-started/previous-versions/

 

PyTorch

An open source machine learning framework that accelerates the path from research prototyping to production deployment.

pytorch.org

 

반응형