-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some improvements #1
Comments
In this project all libraries are installed in: but imagecodecs_build/build_utils/build_libraries.sh Lines 4 to 6 in 674131f
I do some refactor of Dockerfile to use multistage build and got a reduction of image size. |
So it will do no harm even when installed within non-standard locations, right? Thanks for clarifying! |
My experience show that it not harm. It also allow to use other version than installed in system. |
Dear @Czaki,
thanks for your excellent work building upon @cgohlke's
imagecodecs
here. Coming from pypa/cibuildwheel#568 (comment) ff. (thanks again!), I wanted to leave a note here in order to come back to this later.I took a quick look at these images, specifically the 32-bit variant
bokota/imagecodecs_i686
in comparison to thebokota/imagecodecs_64
variant, and found that even more libraries are installed than those you listed. Let me write down a short summary about my findings.Installed libraries
find / -iname '*hdf5*'
shows thatlibhdf5
is installed within both image variants.find / -iname '*lzo*'
shows thatliblzo
is installed withinbokota/imagecodecs_64
, but not withinbokota/imagecodecs_i686
.find / -iname '*blosc*'
shows thatlibblosc
is not installed into standard system locations.Using
yum
Regarding
yum
croaking, as outlined at pypa/cibuildwheel#568 (comment), I have been able to fix it ad hoc by adjusting/etc/yum.repos.d/CentOS-Base.repo
like [1]With kind regards,
Andreas.
[1] https://forums.cpanel.net/threads/yumrepo-error-and-cannot-find-valid-baseurl.682465/
The text was updated successfully, but these errors were encountered: