如何为python3项目打包一个deb文件?

时间:2019-10-13 00:29:12

标签: python-3.x debian packaging

我已经创建了一个依赖于python3的应用程序,

database?.child("restaurants/erbil/Today/category").observe(.childAdded, with: { (snapshot) in
    for child in snapshot.children.allObjects as! [DataSnapshot] {
       print(" key  \(child.key)")
       print(" name \(child.childSnapshot(forPath: "catName").value)")
    }
})

python3很容易让deb自动解析,但dateparser是通过pip安装的。

当我的依赖项来自2个不同的来源时,如何打包我的deb?

0 个答案:

没有答案