python 실행 중 다음 오류가 발생했습니다.
python 오류:
ImportError: No module named setuptools
이 오류 메시지의 표면적인 의미는 다음과 같습니다. setuptools 모듈이 없습니다. 즉, python에 이 모듈이 없다는 의미입니다. 그러면 이 문제를 해결하려면 모듈만 설치하면 됩니다. 문제를 해보겠습니다. 설치:
명령줄에서:
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
설치 완료
위 내용은 ImportError: setuptools 솔루션이라는 모듈이 없습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!