Pre-install virtualenv

Right now to run anything written in Python that requires external
modules, you have to set up distrobox or install a new Python using
Homebrew. Both are heavyweight solutions.

By pre-installing virtualenv, we'll give people the ability to use a
standard tool to create virtual environments, so they can install
needed modules without having to report to a more heavyweight process.
This commit is contained in:
Nate Graham
2025-09-29 18:24:04 -06:00
parent d0d635e480
commit e54d9e10f5

View File

@@ -11,4 +11,5 @@ Packages=boost
pacman
python-setproctitle # For kde-builder
python-yaml # For kde-builder
python-virtualenv # For creating isolated environments to install more Python packages into without having to use Homebrew