pip 에서 버전 충돌이 문제인지 다음과 같은 에러 메세지로 작동이 잘 안되어서 재설치를 하였다.

pkg_resources.DistributionNotFound: The 'pip==8.1.2' distribution was not found and is required by the application


wget https://pypi.python.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/pip-8.1.2.tar.gz

tar -xzvf pip-8.1.2.tar.gz

cd pip-8.1.2

sudo python setup.py install


Reference : https://github.com/pypa/pip/issues/3776

+ Recent posts