Package Details: python-hmmlearn 0.3.2-2

Git Clone URL: https://aur.archlinux.org/python-hmmlearn.git (read-only, click to copy)
Package Base: python-hmmlearn
Description: Hidden Markov Models in Python with scikit-learn like API
Upstream URL: https://hmmlearn.readthedocs.org
Licenses: BSD-3-Clause
Submitter: anntzer
Maintainer: loathingkernel
Last Packager: loathingkernel
Votes: 1
Popularity: 0.000000
First Submitted: 2016-03-03 01:07 (UTC)
Last Updated: 2024-09-24 09:31 (UTC)

Latest Comments

tark1998 commented on 2024-09-24 03:16 (UTC) (edited on 2024-09-24 03:45 (UTC) by tark1998)

If you have ModuleNotFoundError: No module named 'distutils' error, change PKGBUILD file like below

python setup.py build
...
python setup.py install --skip-build --prefix=/usr --root="$pkgdir" --optimize=1

to

python -m build --wheel --no-isolation
...
python -m installer --destdir="$pkgdir" "dist/$_pyname-$pkgver-cp312-cp312-linux_x86_64.whl"

after install python-build and python-installer.

WARNING I have no experience of writing PKGBUILD file but I just follow the build error message.