Package Details: python-scikit-image 0.24.0-1

Git Clone URL: https://aur.archlinux.org/python-scikit-image.git (read-only, click to copy)
Package Base: python-scikit-image
Description: Image processing routines for SciPy
Upstream URL: http://scikit-image.org
Licenses: BSD-3-Clause
Submitter: Dragonlord
Maintainer: Universebenzene
Last Packager: Universebenzene
Votes: 68
Popularity: 0.114224
First Submitted: 2016-04-30 10:32 (UTC)
Last Updated: 2024-06-19 05:02 (UTC)

Required by (90)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

Pastafarianist commented on 2018-09-16 20:34 (UTC)

Seconding @migueldvb, can only Python 3 dependencies be built for the python-scikit-image package?

tsj commented on 2018-07-20 22:59 (UTC) (edited on 2018-07-20 23:00 (UTC) by tsj)

I think python-dask needs to be a dependency. import skimage.filters complains that the dask module is missing.

python-dask depends on python-sparse which seems to have some bug, you have to disable the check step in the PKGBUILD.

davidmcinnis commented on 2017-07-28 03:56 (UTC) (edited on 2017-07-28 03:56 (UTC) by davidmcinnis)

I just added python-pyamg to the AUR, please add this to the list of optional dependencies. See: http://scikit-image.org/docs/stable/release_notes_and_installation.html#optional-requirements Thanks -Dave

b52 commented on 2017-07-21 11:45 (UTC)

As @drawm mentioned, you should add python-pywavelets as dependency!

shadeless commented on 2017-07-07 15:29 (UTC)

Did anyone successfully install all of the dependencies? I end up with this error message ImportError: The 'packaging.requirements' package is required; normally this is bundled with this package so if you get this warning, consult the packager of your distribution. I don't understand this because I have python-requirements and python2-requirements installed. Can anyone help me?

drawm commented on 2017-04-29 16:07 (UTC)

The dependency on python-pywavelets (python2-pywavelets) is missing, so there are many import errors if it has not been installed. The dependency was introduced in https://github.com/scikit-image/scikit-image/commit/c6e5c7095350e931709acd894a54b32c42375822 Please update the "depends" field in the PKGBUILD accordingly.

stick commented on 2017-04-09 18:52 (UTC)

If you want the up-to-date package, and only the version for python 3, you can modify the PKGBUILD as below. # Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org> # Contributor: Andrzej Giniewicz <gginiu@gmail.com> #TODO (AUR optdepends): PyAMG, Astropy, SimpleITK, imread pkgbase=python-scikit-image pkgname=('python-scikit-image') pkgver=0.13.0 pkgrel=1 pkgdesc="Image processing routines for SciPy" arch=('i686' 'x86_64') url="http://scikit-image.org/" license=('BSD') makedepends=('cython' 'python-six' 'python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow') options=(!emptydirs) source=(https://pypi.python.org/packages/f0/a2/918366ba9095ed4c07646be903c795f375d978ee418136eecb0571559719/scikit-image-0.13.0.tar.gz#md5=c92b682ed77b568218423b7afe454996) sha256sums=('77a636bdc08c7668a15951894548c527f0c8c5c2abc86cb850de17551af51e3e') prepare() { cd "$srcdir" } build() { msg "Building SciKit-Image for Python3" cd "$srcdir"/scikit-image-$pkgver python setup.py build } package_python-scikit-image() { depends=('python-scipy' 'python-matplotlib' 'python-networkx' 'python-pillow') optdepends=('python-pyqt4: for imshow(x, fancy=True) and skivi' 'freeimage: for reading various types of image file formats') cd "$srcdir"/scikit-image-$pkgver python setup.py install --root="$pkgdir"/ --optimize=1 install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }

gypaetus commented on 2017-03-27 22:11 (UTC)

Since there is a python2-scikit-image package already, is it possible to make this PKGBUILD to build only python-scikit-image ?

daniel_shub commented on 2016-09-09 20:48 (UTC)

Would it be possible to relax the dependency on python2-pillow to simply python2-imaging? Psychopy (https://aur.archlinux.org/packages/psychopy/) is supposedly incompatible with pillow but works with PIL. The scikit documentation suggests it works with both pillow and PIL.

schmodd commented on 2016-08-26 13:49 (UTC)

I am sorry, fault seems to be on my side. Building the package the way it is described in your link works fine. Thanks for your help.