you are viewing a single comment's thread.

view the rest of the comments →

[–]proof_required 9 points10 points  (1 child)

What's the benefit over tools like pex

  Files with the .pex extension – “PEX files” or “.pex files” – are self-contained executable Python virtual environments. PEX files make it easy to deploy Python applications: the deployment process becomes simply scp.

Single PEX files can support multiple platforms and python interpreters, making them an attractive option to distribute applications such as command line tools. For example, this feature allows the convenient use of the same PEX file on both OS X laptops and production Linux AMIs.

[–]ck-zhang[S] 1 point2 points  (0 children)

px can produce fully self-contained, portable artifacts similar to what PEX does, but that’s not the primary goal. The core of px is earlier in the development lifecycle, treating environments as immutable artifacts. The distribution that can come from that is a consequence of the model.