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 t..