스택큐힙리스트

ImportError: pip 모듈을 찾을 수 없습니다. 본문

카테고리 없음

ImportError: pip 모듈을 찾을 수 없습니다.

스택큐힙리스트 2023. 4. 28. 13:23
반응형

OS: 맥 OS X 10.7.5

Python 버전: 2.7.5

나는 https://pypi.python.org/pypi/setuptools으로부터 ez_setup.py와 함께 setuptools 1.0을 설치했습니다. 그리고 나서 나는 https://pypi.python.org/pypi/pip/1.4.1에서 pip.1.4.1 패키지를 다운로드했습니다.

iTerm에서 (sudo) python setup.py install를 실행하면 나타납니다.

running install

running bdist_egg running egg_info writing requirements to

pip.egg-info/requires.txt writing pip.egg-info/PKG-INFO writing

top-level names to pip.egg-info/top_level.txt writing dependency_links

to pip.egg-info/dependency_links.txt writing entry points to

pip.egg-info/entry_points.txt warning: manifest_maker: standard file

'setup.py' not found

reading manifest file 'pip.egg-info/SOURCES.txt' writing manifest file

'pip.egg-info/SOURCES.txt' installing library code to

build/bdist.macosx-10.6-intel/egg running install_lib warning:

install_lib: 'build/lib' does not exist -- no Python modules to

install

creating build/bdist.macosx-10.6-intel/egg creating

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/PKG-INFO -> build/bdist.macosx-10.6-intel/egg/EGG-INFO

copying pip.egg-info/SOURCES.txt ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/dependency_links.txt ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/entry_points.txt ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/not-zip-safe ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/requires.txt ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO copying

pip.egg-info/top_level.txt ->

build/bdist.macosx-10.6-intel/egg/EGG-INFO creating

'dist/pip-1.4.1-py2.7.egg' and adding

'build/bdist.macosx-10.6-intel/egg' to it removing

'build/bdist.macosx-10.6-intel/egg' (and everything under it)

Processing pip-1.4.1-py2.7.egg removing

'/Users/dl/Library/Python/2.7/lib/python/site-packages/pip-1.4.1-py2.7.egg'

(and everything under it) creating

/Users/dl/Library/Python/2.7/lib/python/site-packages/pip-1.4.1-py2.7.egg

Extracting pip-1.4.1-py2.7.egg to

/Users/dl/Library/Python/2.7/lib/python/site-packages pip 1.4.1 is

already the active version in easy-install.pth Installing pip script

to /Users/dl/Library/Python/2.7/bin Installing pip-2.7 script to

/Users/dl/Library/Python/2.7/bin

Installed

/Users/dl/Library/Python/2.7/lib/python/site-packages/pip-1.4.1-py2.7.egg

Processing dependencies for pip==1.4.1 Finished processing

dependencies for pip==1.4.1

그럼 제가 pip install를 입력하고 나니, 오류 메시지가 그렇게 나타났습니다.

Traceback (most recent call last): File

/Library/Frameworks/Python.framework/Versions/2.7/bin/pip, line 9,

in

load_entry_point('pip==1.4.1', 'console_scripts', 'pip')() File build/bdist.macosx-10.6-intel/egg/pkg_resources.py, line 357, in

load_entry_point File

build/bdist.macosx-10.6-intel/egg/pkg_resources.py, line 2394, in

load_entry_point File

build/bdist.macosx-10.6-intel/egg/pkg_resources.py, line 2108, in

load ImportError: No module named pip

이 문제를 겪은 누군가 저에게 해결 방법에 대한 조언을 줄 수 있나요?

답변 1

나도 같은 문제가 있었다.

내 해결책:

파이썬 3용

sudo apt install python3-pip

파이썬 2용

sudo apt install python-pip

답변 2

ImportError: pip 모듈이 없습니다.

Python은 사용하기 쉬운 프로그래밍 언어입니다. 그러나 때로는 모듈이나 패키지를 설치해야 합니다. pip는 Python 패키지 관리자 중 하나입니다. pip를 사용하면 쉽게 모듈을 설치하고 관리할 수 있습니다.

하지만 때로는 ImportError: No module named pip와 같은 오류 메시지가 표시됩니다. 이것은 pip 모듈이 설치되지 않았거나 이용할 수 없기 때문입니다.

pip 모듈을 사용하는 방법은 간단합니다. 먼저 Python이 내장되어 있는지 확인해야 합니다. 그런 다음 Python이 설치된 디렉토리로 이동하고 명령 프롬프트(Windows) 또는 터미널(Mac, Linux)에서 get-pip.py를 다운로드합니다. 이제 python get-pip.py 명령어를 실행하여 pip를 설치합니다.

이렇게하면 pip를 사용하여 모듈을 쉽게 설치할 수 있습니다. pip를 사용하면 불필요한 복잡성을 제거하고 Python 개발 환경을 간소화할 수 있습니다.

사이트 최적화를 고려한 이글을 작성합니다.

반응형
Comments