TranslateProject/published/202004/20200416 How to package Python applications for Linux.md

170 lines
7.3 KiB
Markdown
Raw Normal View History

2020-04-23 08:48:15 +08:00
[#]: collector: (lujun9972)
[#]: translator: (geekpi)
2020-04-23 23:56:06 +08:00
[#]: reviewer: (wxy)
[#]: publisher: (wxy)
[#]: url: (https://linux.cn/article-12143-1.html)
2020-04-23 08:48:15 +08:00
[#]: subject: (How to package Python applications for Linux)
[#]: via: (https://opensource.com/article/20/4/package-python-applications-linux)
[#]: author: (Moshe Zadka https://opensource.com/users/moshez)
如何为 Linux 打包 Python 应用
======
2020-04-23 23:56:06 +08:00
> 了解如何使用 dh_virtualenv 来让你的 Python 应用可作为 .deb 包安装。
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
![](https://img.linux.net.cn/data/attachment/album/202004/23/235547iztz5d955t9s9b5t.jpg)
在基于 Debian 的操作系统(例如 Debian 或 [Elementary OS][2])上安装 Python 应用的一种方法是使用 [dh_virtualenv][3] 工具。它可以构建一个 `.deb` 包,在应用之外封装了一个 Python 虚拟环境,并在安装时进行部署。
在本文中,我将以构建一个包含 [HTTPie][4] 工具的包为例来解释如何使用它,以便在无需激活虚拟环境的情况下从命令行测试 HTTP API。
2020-04-23 08:48:15 +08:00
### 使用 dh_virtualenv 打包
2020-04-23 23:56:06 +08:00
首先,你需要安装 `dh_virtualenv` 所需的工具。`dh_virtualenv` 的[文档][5]提供了所有安装选项。在基于 Debian 的系统上,我输入:
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
apt-get install dh-virtualenv devscripts
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
尽管不需要 [devscripts][6] 包,但它可以简化后续操作。
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
现在,创建一个目录来保存源码。由于这是一个本地的、非官方的 HTTPie 打包,因此我将其称为 `myhttp`。接下来,让我们在 `myhttp` 内创建一些文件,向 Debian 构建系统提供元数据。
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
首先,创建 `debian/control` 文件:
2020-04-23 08:48:15 +08:00
```
Source: myhttp
Section: python
Priority: extra
2020-04-23 23:56:06 +08:00
Maintainer: Jan Doe <jandoe@example.org>
Build-Depends: debhelper (>= 9), python3.7, dh-virtualenv (>= 0.8)
2020-04-23 08:48:15 +08:00
Standards-Version: 3.9.5
Package: myhttp
Architecture: any
2020-04-23 23:56:06 +08:00
Pre-Depends: dpkg (>= 1.16.1), python3.7, ${misc:Pre-Depends}
2020-04-23 08:48:15 +08:00
Depends: ${misc:Depends}
Description: http client
2020-04-23 23:56:06 +08:00
Useful for doing stuff
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
那么这些是什么信息呢?正如 [Debian 文档][8]指出的:
2020-04-23 08:48:15 +08:00
>“第 17 行是源码包的控制信息。第 913 行是二进制包的控制信息。”
以下是我使用的:
2020-04-23 23:56:06 +08:00
* `Section` 的值对于我们来说大多没有意义,但需要存在。它对给引导式 UI 安装程序提供信息是有意义的,但对于这个包来说,没有意义。
* `Priority` 对像这样的第三方包的正确值是 `extra`
* 强烈建议在 `Maintainer` 字段中填写正确的联系人信息。但不一定非得是你的个人电子邮件,如果包由团队维护,并且你希望将问题发送到团队的邮件别名,例如 `Infrastructure Team <infra-team-list@company.example.com>`
* `Build-Depends` 字段标识你需要 `debhelper`、`python` 和 `dh-virtualenv` 来构建包:包构建过程中将确保这些依赖项在包构建时已安装。
* `Standards-Version` 字段主要给人看。它表明你遵循的指南。本指南基于 `dh-virtualenv` 的官方文档,它是基于 Debian 的 3.9.5 指南。最好一直将源码包和二进制包命名相同。
* `Architecture` 字段应为 `Any`,因为除非虚拟环境可能包含一些特定于体系结构的文件。否则,最好选择该字段为 `any`
* 保持 `Pre-Depends` 列表不变:它是一种非常严格的依赖关系形式,你很少会需要比这里建议的最小依赖更多的依赖项。依赖项通常由构建系统准确计算,因此没有理由手动指定它们。
* 如果你的包主要用于内部,那么 `Description` 字段可能只需要最少的信息或者指向公司 wiki 的链接,不然更多的信息会更有用。
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
然后创建 `debian/compat` 文件,它[主要出于历史目的而存在][10]
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
$ echo "9" > debian/compat
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
接下来,创建更新日志以告知包用户自上次发布以来发生了什么变化。最简单的方法是使用 `dch --create` 创建模板,然后填写值。
2020-04-23 08:48:15 +08:00
填写后,它看起来像:
```
myhttp (2.0.0-1) stable; urgency=medium
2020-04-23 23:56:06 +08:00
* Initial release.
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
-- Jan Doe <jandoe@example.org> Fri, 27 Mar 2020 01:09:22 +0000
2020-04-23 08:48:15 +08:00
```
现在你需要告诉工具安装 HTTPie但是哪个版本
2020-04-23 23:56:06 +08:00
创建一个宽松版本的 `requirements.in` 文件:
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
httpie
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
通常,宽松的需求文件将仅包含项目的直接依赖项,并在需要时指定最低版本。不一定总是需要指定最低版本:这些工具通常偏向于将依赖关系转化为“可能的最新版本”。如果你的 Debian 包与一个内部 Python 包相对应,这是内部应用中的一种常见情况,那么宽松的需求文件看起来将很相似:仅包含包名的一行。
2020-04-23 08:48:15 +08:00
2020-04-23 23:56:06 +08:00
然后使用 `pip-compile`(可通过安装 PyPI 包 `pip-tools` 获得):
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
$ pip-compile requirements.in > requirements.txt
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
这会生成一个严格的依赖文件,名为 `requirements.txt`
2020-04-23 08:48:15 +08:00
```
#
# This file is autogenerated by pip-compile
# To update, run:
#
2020-04-23 23:56:06 +08:00
# pip-compile requirements.in
2020-04-23 08:48:15 +08:00
#
2020-04-23 23:56:06 +08:00
certifi==2019.11.28 # via requests
chardet==3.0.4 # via requests
httpie==2.0.0 # via -r requirements.in
idna==2.9 # via requests
pygments==2.6.1 # via httpie
requests==2.23.0 # via httpie
urllib3==1.25.8 # via requests
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
最后,写一个 `debian/rules` 文件来创建包。因为 `dh_virtualenv` 会处理所有困难的事,因此规则文件很简单:
2020-04-23 08:48:15 +08:00
```
#!/usr/bin/make -f
%:
2020-04-23 23:56:06 +08:00
dh $@ --with python-virtualenv --python /usr/bin/python3.7
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
确保指定 Python 解释器。默认它会使用 `/usr/bin/python`,这是 Python2但是你应该使用一个[受支持的 Python 版本][11]。
2020-04-23 08:48:15 +08:00
完成了,接下来就是构建包:
```
2020-04-23 23:56:06 +08:00
$ debuild -b -us -uc
2020-04-23 08:48:15 +08:00
```
2020-04-23 23:56:06 +08:00
这会在父目录生成一个类似 `myhttp_2.0.0-1_amd64.deb` 的文件。该文件可在任何兼容的系统上安装。
2020-04-23 08:48:15 +08:00
通常,最好在同一平台上构建用于特定平台(例如 Debian 10.0)的 Debian 包。
2020-04-23 23:56:06 +08:00
你可以将此 Debian 包保存在软件仓库中,并使用例如 [Ansible][12] 的工具将其安装在所有相关系统上。
2020-04-23 08:48:15 +08:00
### 总结
2020-04-23 23:56:06 +08:00
给基于 Debian 的系统的打包应用是一个有着多个步骤的过程。使用 `dh_virtualenv` 将使过程变得简单明了。
2020-04-23 08:48:15 +08:00
--------------------------------------------------------------------------------
via: https://opensource.com/article/20/4/package-python-applications-linux
作者:[Moshe Zadka][a]
选题:[lujun9972][b]
译者:[geekpi](https://github.com/geekpi)
2020-04-23 23:56:06 +08:00
校对:[wxy](https://github.com/wxy)
2020-04-23 08:48:15 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://opensource.com/users/moshez
[b]: https://github.com/lujun9972
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/life-python.jpg?itok=F2PYP2wT (Python in a tree)
[2]: https://opensource.com/article/19/12/pantheon-linux-desktop
[3]: https://dh-virtualenv.readthedocs.io/en/latest/
[4]: https://opensource.com/article/19/8/getting-started-httpie
[5]: https://dh-virtualenv.readthedocs.io/en/1.1/tutorial.html
[6]: http://man.he.net/man1/devscripts
[7]: mailto:jandoe@example.org
[8]: https://www.debian.org/doc/manuals/maint-guide/dreq.en.html#control
[9]: mailto:infra-team-list@company.example.com
[10]: https://www.debian.org/doc/manuals/maint-guide/dother.en.html#compat
[11]: https://opensource.com/article/19/11/end-of-life-python-2
[12]: https://opensource.com/resources/what-ansible