anaconda prompt에서 깃허브를 클론하고 requirements.txt를 실행하는 과정에서 다음과 같은 오류가 발생했다.
ERROR: Could not find a version that satisfies the requirement sentencepiece==0.1.85 (from versions: 0.0.0, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6, 0.0.7, 0.0.9, 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.83, 0.1.86, 0.1.91, 0.1.92, 0.1.94, 0.1.95, 0.1.96, 0.1.97, 0.1.98, 0.1.99)
ERROR: No matching distribution found for sentencepiece==0.1.85
해결방법
다음의 명령어를 입력한다.
pip install transformers -i https://pypi.python.org/simple
https://github.com/huggingface/transformers/issues/5850