Python 실행 중에 다음 오류가 발생합니다.
python 오류: ImportError: setuptools라는 모듈이 없습니다.
이 오류 메시지의 표면적 의미는 다음과 같습니다. setuptools라는 모듈이 없습니다. 이 모듈이 부족합니다. 그러면 이 문제를 해결하려면 이 모듈만 설치하면 됩니다.
명령줄에서:
setuptools 패키지 다운로드
shell# wget http://pypi .python.org /packages/source/s/setuptools/setuptools-0.6c11.tar.gz
setuptools 패키지 압축 풀기
shell# tar zxvf setuptools-0.6c11.tar.gz
shell# cd setuptools-0.6c11
setuptools 컴파일
shell# python setup.py build
setuptools 설치 실행 시작
shell# python setup.py install
설치 완료