You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess the gcc compilar is supporsed to be installed because of apt instal python3-dev in the original dockerfile. So, It's strange to me. But, as an ad-hoc workaround, I added build-essential and libffi-dev to be installed via apt, so the resulting corresponding part of the dockerfile is below, and now that docker build is successfully accomplished.
Following the manual on the README.md, I try to build the docker image. However the following error occured.
Also please see the full log log.txt.
I guess the gcc compilar is supporsed to be installed because of
apt instal python3-dev
in the original dockerfile. So, It's strange to me. But, as an ad-hoc workaround, I addedbuild-essential
andlibffi-dev
to be installed via apt, so the resulting corresponding part of the dockerfile is below, and now thatdocker build
is successfully accomplished.RUN apt-get update -qq \ && apt-get install -qq -y \ hdf5-tools \ python3-dev \ python3-tk \ wget \ virtualenv \ zlib1g-dev \ build-essential \ libffi-dev
The reason I put
libffi-dev
is that, without adding this, compilation of cffi failed with error sayingfatal error: ffi.h: No such file or directory
The text was updated successfully, but these errors were encountered: