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
Is seems that on ppc64le data/* selects the directory data/legacy_hdf, while on x86, it does not.
In turn, on ppc64le, the directory cannot be copied because is it not a file.
The fix is IMHO a workaround, since by accident, using the glob data/*.* instead of data/* selects only files, since all the directories have no file-name extension.
To my understanding, on x86, data/* should select directories as well, and the same error should have been raised.
OS used: Red Hat Enterprise Linux Server release 7.3 (Maipo)
The text was updated successfully, but these errors were encountered:
thilo-maurer
changed the title
pip install failes on ppc64le
pip install fails on ppc64le
Jun 12, 2018
Installing pandas using
pip install pandas
fails on architecture ppc64le.Issue may be resolved by the
Is seems that on ppc64le
data/*
selects the directorydata/legacy_hdf
, while on x86, it does not.In turn, on ppc64le, the directory cannot be copied because is it not a file.
The fix is IMHO a workaround, since by accident, using the glob
data/*.*
instead ofdata/*
selects only files, since all the directories have no file-name extension.To my understanding, on x86,
data/*
should select directories as well, and the same error should have been raised.OS used: Red Hat Enterprise Linux Server release 7.3 (Maipo)
The text was updated successfully, but these errors were encountered: