Package Details: python-imageio 2.34.1-2

Git Clone URL: https://aur.archlinux.org/python-imageio.git (read-only, click to copy)
Package Base: python-imageio
Description: a Python library that provides an easy interface to read and write a wide range of image data
Upstream URL: https://github.com/imageio/imageio
Licenses: BSD
Submitter: Francois_B
Maintainer: leomao
Last Packager: leomao
Votes: 30
Popularity: 0.166864
First Submitted: 2015-07-08 00:42 (UTC)
Last Updated: 2024-04-28 03:30 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

leomao commented on 2019-01-05 03:00 (UTC) (edited on 2019-01-26 03:09 (UTC) by leomao)

@sl1pkn07 After checking what these binaries do, it seems that these binaries are just helper scripts to download/remove the binary dependencies: avbin, ffmpeg. These two dependencies are already listed in the optdepends. If one wants to use the binaries provided by imageio, one can install imageio via pip install --user (or install it in virtualenv) and download these dependencies instead of using this package.

So, I am going to remove them in PKGBUILD. What do you think?

sl1pkn07 commented on 2019-01-04 20:33 (UTC) (edited on 2019-01-04 20:35 (UTC) by sl1pkn07)

seems the binary

error: failed to commit transaction (conflicting files)
python-imageio: /usr/bin/imageio_download_bin exists in filesystem (owned by python2-imageio)
python-imageio: /usr/bin/imageio_remove_bin exists in filesystem (owned by python2-imageio)
Errors occurred, no packages were upgraded.

is also provided by python2-imageio

conrad784 commented on 2018-09-09 17:39 (UTC)

@Francois_B do you mind updating this package to 2.4.1 I wouldn't mind comaintaining this package.

oysstu commented on 2018-08-06 19:24 (UTC)

To update to 2.3.0, update the version number and replace .zip with .tar.gz in the source URL.

gypaetus commented on 2017-03-24 01:21 (UTC)

Please find below updated PKGBUILD # Contributor: Francois Boulogne <fboulogne at april dot org> # Maintainer: Francois Boulogne <fboulogne at april dot org> pkgname=python-imageio pkgver=2.1.2 pkgrel=1 pkgdesc="Library for reading and writing a wide range of image, video, scientific, and volumetric data formats" arch=('any') url="https://pypi.python.org/pypi/imageio/" license=('MIT') depends=('python' 'python-numpy' 'freeimage' 'ffmpeg' 'avbin') makedepends=('python-setuptools') optdepends=('python-astropy' 'simpleitk') source=("https://files.pythonhosted.org/packages/source/i/imageio/imageio-${pkgver}.zip") sha256sums=('89d7692d9f513aa21665af7de94948bc1ef110d812fa66c34bfd486590d986bb') package() { cd "$srcdir/imageio-$pkgver" python setup.py install --root="${pkgdir}" --optimize=1 } # vim:ts=2:sw=2:et:

bred commented on 2016-06-14 19:31 (UTC)

Put freeimage as a dependence. https://www.archlinux.org/packages/community/i686/freeimage/

anntzer commented on 2016-04-27 07:29 (UTC)

Also, I'd probably make ffmpeg and avbin dependencies too (just like freeimage) and set IMAEGIO_FFMPEG_EXE and IMAGEIO_AVBIN_LIB accordingly via an entry in /etc/profile.d (https://github.com/imageio/imageio/blob/master/docs/envvariables.rst).

anntzer commented on 2016-03-18 04:32 (UTC)

Perhaps it would make sense to build the library with freeimage, rather than relying on a download at runtime? python setup.py build_with_fi install (http://imageio.readthedocs.org/en/latest/installation.html)