본문 바로가기

오늘의 삽질

window10 에 torchtext 설치하기

<상황>

(1) 윈도우 10에서 cmd 창으로 torchtext 설치 시도.

pip install torchtext

 

(2) 아나콘다 프롬프트 창에서

conda install torchtext 시도했으나 실패.

 

<에러>

(1) ModuleNotFoundError: No module named 'tools.nnwrap'

(2) 

 

<해결>

깃헙에서 파일을 받아 직접 설치

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

 

 

'오늘의 삽질' 카테고리의 다른 글

[git] 윈도우에서 git 계정 변경하기  (0) 2020.02.16
[git] 시작하기  (0) 2020.02.16
[cuda] UBUNTU 18 에 cuda 설치하기  (0) 2020.02.10