Сбой при установке модуля python (3.6.6) pandas-0.24.2. в AIX 7.1.0.0 powerpc - PullRequest
0 голосов
/ 26 апреля 2019
Aix ---> 7.1.0.0 (64 Bit)
Python --> 3.6.6
Not able to install module pandas-0.24.2 , 
It is failing while trying to import numpy with the below error message,

 ImportError:        0509-022 Cannot load module $PYTHON_HOME/lib64/python3.6/site-packages/numpy-1.16.2-py3.6-aix-7.1.egg/numpy/core/_multiarray_umath.so.

Have tried compiling the numpy module from the package source, still it didn't work....
https://stackoverflow.com/questions/31704639/compiling-numpy-for-python3-for-aix-works-but-import-fails#32736358

https://github.com/numpy/numpy/issues/12396
https://github.com/numpy/numpy/issues/11317
https://github.com/numpy/numpy/issues/4723



ImportError: 0509-022 Cannot load module $PYTHON_HOME/lib64/python3.6/site-packages/numpy-1.16.2-py3.6-aix-7.1.egg/numpy/core/_multiarray_umath.so.
0509-026 System error: Cannot run a file that does not have a valid format

1 Ответ

0 голосов
/ 26 апреля 2019

попробуй:

  1. pip uninstall -y numpy
  2. pip uninstall -y setuptools
  3. pip install setuptools
  4. pip install numpy
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...