Search Criteria
Package Details: python-home-assistant-frontend 20260624.4-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/python-home-assistant-frontend.git (read-only, click to copy) |
|---|---|
| Package Base: | python-home-assistant-frontend |
| Description: | The Home Assistant frontend |
| Upstream URL: | https://github.com/home-assistant/frontend |
| Licenses: | Apache-2.0 |
| Submitter: | AlD |
| Maintainer: | AlD |
| Last Packager: | AlD |
| Votes: | 4 |
| Popularity: | 0.000050 |
| First Submitted: | 2022-02-01 00:34 (UTC) |
| Last Updated: | 2026-07-04 21:40 (UTC) |
Latest Comments
AlD commented on 2026-03-31 21:39 (UTC)
It installs cleanly in a chroot, so I'm guessing there's an issue with your
uvenvironment.nshephard commented on 2026-03-18 09:39 (UTC)
Thanks for writing and sharing these Home Assistant builds.
I was trying to install this front end and am using
uvto manage my virtual environments I created and activated the virtual environment.But when I tried to install the package with
makepkg -sriit complained it that a virtual environment couldn't be found.This was because using
uvthe call topipneeds preceding withuv, and so the global/usr/bin/pipwas being called instead, which can install packages system-wide when called as user.I needed to modify line 11 of
PKGBUILD......and with that change I could build and install the package.
Need for
venvI think though that even if I wasn't using
uvthis would still have failed because the build requires a virtual environment since/usr/bin/pipcan't install packages at the system level when run asuseras is the case when runningmakepkg -sriThus, if looking to build and install this package you have to have created a virtual environment and activated, which requires
python-venvto be installed at the system level.