SW 개발

[python] pip install build 실패

. . . 2019. 8. 21. 13:47
반응형

출처 : https://github.com/python-openxml/python-docx/issues/594

pip install build 실패

pip install 명령어를 통해서 패키지를 설치할때 다음과 같은 메시지가 뜰때가 있다.

  ----------------------------------------
  ERROR: Failed building wheel for python-docx
  Running setup.py clean for python-docx
Failed to build python-docx

즉, pip install 과정중에 build 를 실패했다는뜻..

이때는 다음과 같이 처리한다.

setuptools 설치

다음과 같은명령어를 통해 pip install 과정중에 빌드할 수 있도록한다.

pip install -U setuptools

반응형