🐛 Bug Fixes
Fix Python installation under Debian @Nuru (#708)
what
- Change how Python is installed under Debian. Fixes #706
- Make
args
executable
why
- Python installation under Debian is tricky because Debian maintains a system-level installation of Python that is kept separate and distinct from the user-level installation, so package-level installation does not work. User-level installation has the issue that wherever you install it, Python scripts will be installed referencing that specific installation directory, so you cannot (as we had been doing) install it in one place and then move it to another.
args
is a very simple utility script that was always meant to be executable but was inadvertently checked in as non-executable.