packaging VS dh-virtualenv

Compare packaging vs dh-virtualenv and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
packaging dh-virtualenv
4 4
584 1,601
1.9% 0.6%
8.0 0.0
2 days ago 11 months ago
Python Python
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

packaging

Posts with mentions or reviews of packaging. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-24.

dh-virtualenv

Posts with mentions or reviews of dh-virtualenv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-05-20.
  • PyPi root metapackage?
    1 project | /r/learnpython | 28 Mar 2022
    This is how Azure package functions, iirc. I think I used this https://github.com/spotify/dh-virtualenv for similar purpose some time ago.
  • What to do about GPU packages on PyPI?
    7 projects | news.ycombinator.com | 20 May 2021
    I'm in a devops role where we actually reroll the Tensorflow whl in-house (to get a few tweaks like specific AVX flags turned on), but because the rest of our deployment is apt/debs, we then turn around and wrap that whl in a deb using Spotify's excellent dh-virtualenv:

    https://github.com/spotify/dh-virtualenv

    There's no expertise for Bazel in-house; when we run the build, it seems to fail all its cache hits and then spend 12-13h in total compiling, much of which appears to be recompiling a specific version of LLVM.

    Every dependency is either vendored or pinned, including some critical things that have no ABI guarantees like Eigen, which is literally pinned to some a random commit, so that causes chaos when other binaries try to link up with the underlying Tensorflow shared objects:

    https://github.com/tensorflow/tensorflow/blob/master/third_p...

    And when you go down a layer into CUDA, there are even more support matrixes listing exact known sets of versions of things that work together:

    https://docs.nvidia.com/deeplearning/tensorrt/support-matrix...

    Anyway, I'm mostly just venting here. But the whole thing is an absurd nightmare. I have no idea how a normal distro would even begin to approach the task of unvendoring this stuff and shipping a set of normal packages for it all.

  • Working with Rust in VSCode’s devcontainer: Seamlessly run your Rust programs under a development container in Visual Studio Code.
    1 project | /r/rust | 11 Apr 2021
    Rarely do I develop software at my host level, I'm almost always doing it inside of a container or a virtual machine (local or remote), and part of that is simple muscle memory to solve several problems that you've mentioned in your experience with Python, as well as other languages (bonus points for me that I was never plagued by a horrid npm bug). Those are problems that are easily solvable with Docker and a properly formatted requirements.txt (which should only be used in development — use pip/setup.py for proper deployment) and for the rare times when I do need to use Python at the host level of a Linux system, I use Spotify's dh-virtualenv.
  • Is there an excellent Python equivalent for glitch.com?
    1 project | /r/madeinpython | 6 Apr 2021
    Maybe I misunderstood the question, but this would be the point of CI/CD and containerization as far as industry standards are concerned. If you had to deploy at host level, then this would be the point of dh-virtualenv that’s tied in by your CI/CD system.

What are some alternatives?

When comparing packaging and dh-virtualenv you can also consider the following projects:

pyarmor - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts.

PyInstaller - Freeze (package) Python programs into stand-alone executables

Nuitka - Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.

py2app

PyOxidizer - A modern Python application packaging and distribution tool

py2exe - modified py2exe to support unicode paths

pynsist - Build Windows installers for Python applications