- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
来自阅读this documentation ,我已经建立了命令 sh setuptools-0.6c11-py2.7.egg
实际执行的心智模型,但它非常不完整,我仍然对某些方面感到困惑。
我的心智模型是这样的:
easy_install somepackage
的原因。因此我的问题是:
这不是“如何让它工作”的问题 - 我在这个轴上没有遇到任何问题,但我想完全理解这里发生的事情。
最佳答案
Egg 文件只是简单的 zip 压缩目录,包含 Python 包、模块和一些元数据,扩展名为 .egg
。
zip 格式灵活;它将忽略文件开头不是 zip 文件一部分的任何内容。通过查找一系列字符(PK
和另外两个指示类型的字节)并从那里读取来检测 zipfile。
这意味着您可以在 zip 的前面放一些东西。 setuptools
egg 的特殊之处在于它们使用这个技巧在 zip 数据之前插入一些 shell 脚本:
$ 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())" "$@"
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 行,这是一个真正的 zip:
$ tail -n+9 setuptools-0.6c11-py2.7.egg | file -
/dev/stdin: Zip archive data, at least v2.0 to extract
前 8 行中包含的脚本是您运行 sh setuptools-0.6c11-py2.7.egg
时正在执行的脚本。
如您所见,该脚本是特定于egg版本的;这在 python 2.7 版本中,它只是使用 python 解释器将这个 egg 添加到 python 搜索路径。然后它从包含的 python 模块导入一个函数并运行它。
这是 egg 本身的内容,正如我提到的只是一个 zip 存档:
$ 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%
关于python - 当我运行 setuptools .egg "as if it were a shell script"时,实际发生了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13399118/
下面的代码旨在在首次打开工作簿时运行。 Sub Auto_Open() Dim LastRow As Integer LastRow = Sheet6.UsedRange.Rows.Count Act
当我尝试操作我的代码时,除了弹出调试错误外,它执行得很好。错误信息在这里。 我的完整代码在这里。 #include using namespace std; class String { publi
The invocation of the constructor on type 'WpfApplication1.MainWindow' that matches the specified bi
我正在使用 BaseAdapter: public class MyAdapter extends BaseAdapter{ private final LayoutInflater mInflate
我想做网页抓取。我写了代码 var connection = require('./mysqlConnection'); var c = new Crawler({ maxConnections
我的系统中发生 Java 堆空间错误。我尝试了很多来自 Stack Overflow 的解决方案,但没有任何效果。当我工作时 当按下 OK 然后 (我的项目没有错误) 我的 eclipse.ini 是
环境: i5 750 DDR3 4GWin7 专业版 x64 sp1 DXSDK 9.0c 2010 年 6 月 GeForce GT240(驱动程序 275.33)512MB MSVC 2008 s
这段代码是我写的。 import socket host = 'localhost' port = 3794 s = socket.socket(socket.AF_INET, socket.SOCK
我正在尝试引用 UTC 时间间隔获取本地日期时间,我正在执行下面的代码。 var dtString =DateTime.UtcNow.ToString(@"yyyy-MM-ddTHH\:mm\:ss
我有一个非常简单的 C# 问题,它从库中加载 Windows WPF 窗口。这是代码: public partial class App : Application { public App(
我目前正在使用带有导航组件的底部导航,它工作正常但是当我们点击导航项 fragment 正在加载然后闪烁正在发生,即使当前选择的项目也会发生闪烁。它在加载 fragment 时发生。我的应用程序屏幕背
我是新来的 kotlin , 当我开始 Null Safety 时,我对下面的情况感到困惑. There's some data inconsistency with regard to initia
我有一个框,其中包含同时发生的两个独立的 css 转换。 当转换发生时,图标下方的标题和段落文本移动位置 参见 JS Fiddle:http://jsfiddle.net/Lsnbpt8r/ 这是我的
在为黑莓 10 构建电话间隙应用程序时,我遇到了异常情况。 [BUILD] Populating application source [BUILD] Parsing config.xml [
这个问题在这里已经有了答案: How to properly stop the Thread in Java? (8 个回答) 3年前关闭。 我看过How to properly stop the T
我试图弄清楚发生 fatal error 时如何刷新页面。基本上我正在访问图像 api 并将图像复制到我的服务器。我还每次都创建照片的缩略图版本。我会每隔一段时间收到一条错误消息,指出我的脚本试图分配
我正在尝试使用断言函数检查元素是否在屏幕上。我在我的测试应用程序 (AndroidDriver) 中使用 Appium 和 Java。我期望的是,如果元素在屏幕上,则返回 1;如果不在屏幕上,则返回
我正在开发图像上传系统。我使用 CommonsMultipartResolver 设置 maxUploadSize。当我尝试上传超过最大尺寸的图像文件时,会发生 MaxUploadSizeExcced
我有以下代码和@ComponentScan(basePackages = "com.project.shopping"),包结构为 com.project.shopping.Controller co
我尝试运行此程序作为测试,但收到错误“发生了 JNI 错误,请检查您的安装并重试”,然后是“发生了 Java 异常”。关于如何解决这个问题有什么想法吗? package java; public cl
我是一名优秀的程序员,十分优秀!