파이썬3 노트

python library의 upgrade를 pip으로 내놓지 않아 github의 master로 설치해야 할 때

Jonchann 2019. 3. 29. 18:25

저번 글에서 torchtext를 사용하다 RawField의 is_target문제로 upgrade해야 했다고 했는데 이게 github master에서 merge만 된 상태라 master로 직접 upgrade해야 했다.

 

아주 간단한 얘기지만 잊어버리면 귀찮으니 적어놓는다.

나와 같이 python3의 환경을 anaconda로 설정해 놓았다면 아래와 같이 적으면 된다.

python3 -m pip git+https://github.com/pytorch/text.git

그럴 일은 없겠지만 나처럼.. terminal과 pycharm의 python3 환경이 다르다면 아래와 같이 적으면 된다..ㅎ

/usr/local/bin/python3.7 -m pip install git+https://github.com/pytorch/text.git