2012-11-15 4 views
4

this documentation에서부터, 나는 명령 sh setuptools-0.6c11-py2.7.egg이 실제로하는 정신 모델을 만들었지 만, 그것은 매우 불완전하고 몇 가지 측면에서 여전히 신비 스럽다.setuptools .egg를 "쉘 스크립트 인 것처럼"실행하면 실제로 어떤 일이 발생합니까?

이 명령을 실행
  1. 는, (내가 영리 의존성을 처리 zip 파일의 일종으로 간주했던) 계란은 어떻게 든 파이썬의 올바른 버전을 찾습니다

    내 정신 모델은 다음과 같이 간다 내 시스템에서, 그리고 그 python을 사용하여, "적절한 위치에 설치"합니다.

  2. 실제로는 내 경로에있는 디렉토리에 easy_install이라는 'Unix 실행 파일'이 만들어져 있음을 의미합니다. 따라서 나중에 터미널에 easy_install somepackage을 입력하면됩니다.

내 질문에 따라서 다음과 같습니다

  1. 어떻게 이런 식으로 "자동으로 설치"수에 '계란'? 특히이 달걀에 easy_install이 작동하도록 다른 달걀을 요구할 때 이것이 효과가있는 이유는 무엇입니까?
  2. 이렇게 생성 된 'Unix 실행 파일'은 4kb입니다. 실제로 무엇입니까? 다른 것들에 대한 부름이 가득 차 있습니까? 어디있어?

이 방법은 '작동 방법'이 아닙니다. 축에 따라 문제가 발생하지 않지만 여기에서 진행되는 작업을 완전히 파악하고 싶습니다.

답변

8

에그 파일은 단순히 파이썬 패키지, 모듈 및 약간의 메타 데이터가 포함 된 zip 압축 디렉토리이며 .egg 확장자입니다.

zip 형식은 유연합니다. 이 zipfile의이 아닌 파일의 시작 부분에서 아무 것도 무시합니다. zip 파일은 일련의 문자 (유형을 나타내는 PK 및 2 바이트가 더 있음)를 찾고 거기에서 읽음으로써 감지됩니다.

즉, 을 우편 번호에 넣을 수 있습니다. 그들은 압축 데이터 전에 일부 쉘 스크립트를 삽입 할 수 트릭을 사용한다는 점에서 setuptools 계란은 특별하다 :에

$ tail -n+9 setuptools-0.6c11-py2.7.egg | file - 
/dev/stdin: Zip archive data, at least v2.0 to extract 

스크립트를 포함 : 그 첫 8 개 라인 과거

$ head -n8 setuptools-0.6c11-py2.7.egg 
#!/bin/sh 
if [ `basename $0` = "setuptools-0.6c11-py2.7.egg" ] 
then exec python2.7 -c "import sys, os; sys.path.insert(0, os.path.abspath('$0')); from setuptools.command.easy_install import bootstrap; sys.exit(bootstrap())" "[email protected]" 
else 
    echo $0 is not the correct name for this egg file. 
    echo Please rename it back to setuptools-0.6c11-py2.7.egg and try again. 
    exec false 
fi 

, 그것은 진정한 지퍼입니다 처음 8 줄은 sh setuptools-0.6c11-py2.7.egg을 실행할 때 실행되는 내용입니다.

자세히 알 수 있듯이이 스크립트는 계란 버전에만 적용됩니다. 이것은 파이썬 2.7 용 버전에서, 파이썬 인터프리터를 사용하여이 달걀을 파이썬 검색 경로에 추가하기 만하면됩니다. 그런 다음 포함 된 파이썬 모듈에서 함수를 가져 와서 실행합니다.

$ zipinfo -l setuptools-0.6c11-py2.7.egg 
Archive: setuptools-0.6c11-py2.7.egg 332005 bytes 78 files 
-rw-rw-r-- 2.0 unx  1713 b-  995 defN 7-Jul-10 20:26 site.pyc 
-rw-rw-r-- 2.0 unx 90113 b- 31461 defN 7-Jul-10 20:26 pkg_resources.pyc 
-rw-rw-r-- 2.0 unx 85435 b- 23537 defN 19-Oct-09 13:35 pkg_resources.py 
-rw-rw-r-- 2.0 unx  2362 b-  875 defN 20-Sep-06 17:05 site.py 
-rw-rw-r-- 2.0 unx  309 b-  224 defN 7-Jul-10 20:26 easy_install.pyc 
-rw-rw-r-- 2.0 unx  126 b-  105 defN 20-Sep-06 17:05 easy_install.py 
-rw-rw-r-- 2.0 unx  43 b-  43 defN 7-Jul-10 20:26 EGG-INFO/top_level.txt 
-rw-rw-r-- 2.0 unx  1591 b-  458 defN 7-Jul-10 20:26 EGG-INFO/SOURCES.txt 
-rw-rw-r-- 2.0 unx  1 b-  3 defN 20-Oct-09 10:07 EGG-INFO/zip-safe 
-rw-rw-r-- 2.0 unx  9278 b-  3194 defN 7-Jul-10 20:26 EGG-INFO/PKG-INFO 
-rwxrwxr-x 2.0 unx  2504 b-  623 defN 7-Jul-10 20:26 EGG-INFO/entry_points.txt 
-rw-rw-r-- 2.0 unx  1 b-  3 defN 7-Jul-10 20:26 EGG-INFO/dependency_links.txt 
-rw-rw-r-- 2.0 unx  1567 b-  791 defN 7-Jul-10 20:26 setuptools/extension.pyc 
-rw-rw-r-- 2.0 unx  1089 b-  424 defN 20-Sep-06 17:05 setuptools/extension.py 
-rw-rw-r-- 2.0 unx 10796 b-  4050 defN 7-Jul-10 20:26 setuptools/sandbox.pyc 
-rw-rw-r-- 2.0 unx  8227 b-  2309 defN 6-Jul-10 20:09 setuptools/sandbox.py 
-rw-rw-r-- 2.0 unx  5677 b-  2499 defN 7-Jul-10 20:26 setuptools/archive_util.pyc 
-rw-rw-r-- 2.0 unx 26800 b- 11228 defN 7-Jul-10 20:26 setuptools/package_index.pyc 
-rw-rw-r-- 2.0 unx  6209 b-  2229 defN 19-Oct-09 13:35 setuptools/depends.py 
-rw-rw-r-- 2.0 unx  6677 b-  3096 defN 7-Jul-10 20:26 setuptools/depends.pyc 
-rw-rw-r-- 2.0 unx  2816 b-  1159 defN 6-Jul-10 20:09 setuptools/__init__.py 
-rw-rw-r-- 2.0 unx  3639 b-  1837 defN 7-Jul-10 20:26 setuptools/__init__.pyc 
-rw-rw-r-- 2.0 unx  5924 b-  1777 defN 19-Oct-09 13:35 setuptools/archive_util.py 
-rw-rw-r-- 2.0 unx 29972 b-  8156 defN 19-Oct-09 13:35 setuptools/dist.py 
-rwxrwxr-x 2.0 unx  7168 b-  3249 defN 19-Oct-09 17:18 setuptools/cli.exe 
-rw-rw-r-- 2.0 unx 28275 b-  8698 defN 6-Jul-10 20:09 setuptools/package_index.py 
-rw-rw-r-- 2.0 unx 29786 b- 10953 defN 7-Jul-10 20:26 setuptools/dist.pyc 
-rwxrwxr-x 2.0 unx  7168 b-  3244 defN 19-Oct-09 17:18 setuptools/gui.exe 
-rw-rw-r-- 2.0 unx 22219 b-  7042 defN 7-Jul-10 20:26 setuptools/tests/test_resources.pyc 
-rw-rw-r-- 2.0 unx 19388 b-  4723 defN 24-Sep-08 13:10 setuptools/tests/test_resources.py 
-rw-rw-r-- 2.0 unx 12345 b-  2765 defN 24-Sep-08 13:10 setuptools/tests/__init__.py 
-rw-rw-r-- 2.0 unx 13811 b-  4523 defN 7-Jul-10 20:26 setuptools/tests/__init__.pyc 
-rw-rw-r-- 2.0 unx  1499 b-  708 defN 7-Jul-10 20:26 setuptools/tests/test_packageindex.pyc 
-rw-rw-r-- 2.0 unx 81351 b- 27171 defN 7-Jul-10 20:26 setuptools/tests/doctest.pyc 
-rw-rw-r-- 2.0 unx  759 b-  346 defN 24-Sep-08 13:10 setuptools/tests/test_packageindex.py 
-rw-rw-r-- 2.0 unx 99714 b- 25663 defN 20-Sep-06 17:05 setuptools/tests/doctest.py 
-rw-rw-r-- 2.0 unx  2866 b-  1332 defN 7-Jul-10 20:26 setuptools/command/rotate.pyc 
-rw-rw-r-- 2.0 unx 11520 b-  3127 defN 19-Oct-09 13:35 setuptools/command/build_ext.py 
-rw-rw-r-- 2.0 unx  6649 b-  2208 defN 24-Sep-08 13:10 setuptools/command/upload.py 
-rw-rw-r-- 2.0 unx  8162 b-  3538 defN 7-Jul-10 20:26 setuptools/command/sdist.pyc 
-rw-rw-r-- 2.0 unx  5965 b-  2421 defN 7-Jul-10 20:26 setuptools/command/setopt.pyc 
-rw-rw-r-- 2.0 unx  2283 b-  695 defN 19-Oct-09 17:50 setuptools/command/bdist_wininst.py 
-rw-rw-r-- 2.0 unx  7535 b-  3208 defN 7-Jul-10 20:26 setuptools/command/build_py.pyc 
-rw-rw-r-- 2.0 unx  3690 b-  1528 defN 7-Jul-10 20:26 setuptools/command/install.pyc 
-rw-rw-r-- 2.0 unx 14205 b-  4465 defN 19-Oct-09 13:35 setuptools/command/egg_info.py 
-rw-rw-r-- 2.0 unx  626 b-  311 defN 28-Dec-06 19:52 setuptools/command/__init__.py 
-rw-rw-r-- 2.0 unx  839 b-  494 defN 7-Jul-10 20:26 setuptools/command/__init__.pyc 
-rw-rw-r-- 2.0 unx  5053 b-  1519 defN 20-Sep-06 17:05 setuptools/command/setopt.py 
-rw-rw-r-- 2.0 unx  674 b-  329 defN 7-Jul-10 20:26 setuptools/command/register.pyc 
-rw-rw-r-- 2.0 unx  3724 b-  1292 defN 4-Sep-07 00:11 setuptools/command/install_egg_info.py 
-rw-rw-r-- 2.0 unx 18005 b-  5444 defN 19-Oct-09 13:35 setuptools/command/bdist_egg.py 
-rw-rw-r-- 2.0 unx  3984 b-  1385 defN 15-Feb-08 12:29 setuptools/command/install.py 
-rw-rw-r-- 2.0 unx  2356 b-  1002 defN 7-Jul-10 20:26 setuptools/command/bdist_wininst.pyc 
-rw-rw-r-- 2.0 unx  2025 b-  774 defN 22-May-07 17:55 setuptools/command/bdist_rpm.py 
-rw-rw-r-- 2.0 unx  2486 b-  871 defN 20-Sep-06 17:05 setuptools/command/install_lib.py 
-rw-rw-r-- 2.0 unx  740 b-  357 defN 20-Sep-06 17:05 setuptools/command/saveopts.py 
-rw-rw-r-- 2.0 unx 56980 b- 23198 defN 7-Jul-10 20:26 setuptools/command/easy_install.pyc 
-rw-rw-r-- 2.0 unx  3172 b-  1438 defN 7-Jul-10 20:26 setuptools/command/install_lib.pyc 
-rw-rw-r-- 2.0 unx  2257 b-  1013 defN 7-Jul-10 20:26 setuptools/command/bdist_rpm.pyc 
-rw-rw-r-- 2.0 unx  5310 b-  1732 defN 15-Feb-08 12:29 setuptools/command/develop.py 
-rw-rw-r-- 2.0 unx  5091 b-  2222 defN 7-Jul-10 20:26 setuptools/command/test.pyc 
-rw-rw-r-- 2.0 unx 63580 b- 17507 defN 19-Oct-09 13:35 setuptools/command/easy_install.py 
-rw-rw-r-- 2.0 unx 16467 b-  6544 defN 7-Jul-10 20:26 setuptools/command/egg_info.pyc 
-rw-rw-r-- 2.0 unx  4577 b-  1994 defN 7-Jul-10 20:26 setuptools/command/install_egg_info.pyc 
-rw-rw-r-- 2.0 unx  6275 b-  3108 defN 7-Jul-10 20:26 setuptools/command/upload.pyc 
-rw-rw-r-- 2.0 unx  7246 b-  2237 defN 20-Sep-06 17:05 setuptools/command/build_py.py 
-rw-rw-r-- 2.0 unx 10073 b-  4314 defN 7-Jul-10 20:26 setuptools/command/build_ext.pyc 
-rw-rw-r-- 2.0 unx  3185 b-  1463 defN 7-Jul-10 20:26 setuptools/command/alias.pyc 
-rw-rw-r-- 2.0 unx  1921 b-  704 defN 15-Feb-08 12:29 setuptools/command/install_scripts.py 
-rw-rw-r-- 2.0 unx  7327 b-  2380 defN 19-Oct-09 15:46 setuptools/command/sdist.py 
-rw-rw-r-- 2.0 unx  1249 b-  647 defN 7-Jul-10 20:26 setuptools/command/saveopts.pyc 
-rw-rw-r-- 2.0 unx  2021 b-  750 defN 20-Sep-06 17:05 setuptools/command/rotate.py 
-rw-rw-r-- 2.0 unx  2477 b-  848 defN 19-Oct-09 13:35 setuptools/command/alias.py 
-rw-rw-r-- 2.0 unx 17695 b-  7800 defN 7-Jul-10 20:26 setuptools/command/bdist_egg.pyc 
-rw-rw-r-- 2.0 unx  277 b-  158 defN 20-Sep-06 17:05 setuptools/command/register.py 
-rw-rw-r-- 2.0 unx  4442 b-  1424 defN 15-Feb-08 12:29 setuptools/command/test.py 
-rw-rw-r-- 2.0 unx  2445 b-  1160 defN 7-Jul-10 20:26 setuptools/command/install_scripts.pyc 
-rw-rw-r-- 2.0 unx  5175 b-  2317 defN 7-Jul-10 20:26 setuptools/command/develop.pyc 
78 files, 958981 bytes uncompressed, 321419 bytes compressed: 66.5% 
+2

+1 : 여기

난 그냥 우편 아카이브를 언급 한 것입니다 계란 자체의 내용이다. 에그 셀 센트 대답! – glglgl

+0

이것은 턱 빠져 빠르며 빠르며 완전한 대답이었습니다. 지금 완전히 이해하고있는 것 같습니다.이전에 내 질문에 답변 해 주셨고 매우 도움이되었지만이 답변은 정말 특별했습니다. 감사합니다! –

+0

쉘은 처음 8 줄 이후에 파일을 파싱하는 것을 어떻게 알 수 있습니까? – jpmc26