Not able to build and install NumPy on AIX6.1












0















I am trying to install Data Science packages on AIX6.1(one of Unix os).
I have tried using PIP but it was not properly built and installed, some .so files were not compiled properly after which I tried installing from the source in which I am not able to build it properly.
I have GCC version 6.3, Fortran compiler installed.
the command is given:



    # python setup.py build


the command was executed with errors. Please find below the error log.



    gcc: /tmp/tmpn4o642va/source.c
/tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
#include <cblas.h>
^
compilation terminated.
/tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
#include <cblas.h>
^
compilation terminated.


some error in the middle part of the whole log:



    openblas_clapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas,lapack not found in ['/usr/bin/../../opt/freeware/lib', '/opt/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
.
.
.
/opt/freeware/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building library "npymath" sources
get_default_fcompiler: matching types: '['ibm', 'gnu', 'gnu95']'
customize IBMFCompiler
Could not locate executable xlf90
Could not locate executable xlf
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize Gnu95FCompiler
Found executable /usr/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using config


At the very end of the whole log the error is:



    compiling C sources
C compiler: /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_LARGE_FILES -Inumpy/core/include -Ibuild/src.aix-6.1-3.6/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/freeware/include/python3.6m -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -c'
/opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so
ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
XCOFF32 object files are not allowed in 64-bit mode.
collect2: error: ld returned 8 exit status
ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
XCOFF32 object files are not allowed in 64-bit mode.
collect2: error: ld returned 8 exit status
error: Command "/opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so" failed with exit status 1


Thanks a lot!!!










share|improve this question





























    0















    I am trying to install Data Science packages on AIX6.1(one of Unix os).
    I have tried using PIP but it was not properly built and installed, some .so files were not compiled properly after which I tried installing from the source in which I am not able to build it properly.
    I have GCC version 6.3, Fortran compiler installed.
    the command is given:



        # python setup.py build


    the command was executed with errors. Please find below the error log.



        gcc: /tmp/tmpn4o642va/source.c
    /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
    #include <cblas.h>
    ^
    compilation terminated.
    /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
    #include <cblas.h>
    ^
    compilation terminated.


    some error in the middle part of the whole log:



        openblas_clapack_info:
    customize UnixCCompiler
    customize UnixCCompiler
    libraries openblas,lapack not found in ['/usr/bin/../../opt/freeware/lib', '/opt/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
    NOT AVAILABLE
    .
    .
    .
    /opt/freeware/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'define_macros'
    warnings.warn(msg)
    running build
    running config_cc
    unifing config_cc, config, build_clib, build_ext, build commands --compiler options
    running config_fc
    unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
    running build_src
    build_src
    building py_modules sources
    building library "npymath" sources
    get_default_fcompiler: matching types: '['ibm', 'gnu', 'gnu95']'
    customize IBMFCompiler
    Could not locate executable xlf90
    Could not locate executable xlf
    customize GnuFCompiler
    Could not locate executable g77
    Could not locate executable f77
    customize Gnu95FCompiler
    Found executable /usr/bin/gfortran
    customize Gnu95FCompiler
    customize Gnu95FCompiler using config


    At the very end of the whole log the error is:



        compiling C sources
    C compiler: /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl

    compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_LARGE_FILES -Inumpy/core/include -Ibuild/src.aix-6.1-3.6/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/freeware/include/python3.6m -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -c'
    /opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so
    ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
    XCOFF32 object files are not allowed in 64-bit mode.
    collect2: error: ld returned 8 exit status
    ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
    XCOFF32 object files are not allowed in 64-bit mode.
    collect2: error: ld returned 8 exit status
    error: Command "/opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so" failed with exit status 1


    Thanks a lot!!!










    share|improve this question



























      0












      0








      0








      I am trying to install Data Science packages on AIX6.1(one of Unix os).
      I have tried using PIP but it was not properly built and installed, some .so files were not compiled properly after which I tried installing from the source in which I am not able to build it properly.
      I have GCC version 6.3, Fortran compiler installed.
      the command is given:



          # python setup.py build


      the command was executed with errors. Please find below the error log.



          gcc: /tmp/tmpn4o642va/source.c
      /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
      #include <cblas.h>
      ^
      compilation terminated.
      /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
      #include <cblas.h>
      ^
      compilation terminated.


      some error in the middle part of the whole log:



          openblas_clapack_info:
      customize UnixCCompiler
      customize UnixCCompiler
      libraries openblas,lapack not found in ['/usr/bin/../../opt/freeware/lib', '/opt/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
      NOT AVAILABLE
      .
      .
      .
      /opt/freeware/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'define_macros'
      warnings.warn(msg)
      running build
      running config_cc
      unifing config_cc, config, build_clib, build_ext, build commands --compiler options
      running config_fc
      unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
      running build_src
      build_src
      building py_modules sources
      building library "npymath" sources
      get_default_fcompiler: matching types: '['ibm', 'gnu', 'gnu95']'
      customize IBMFCompiler
      Could not locate executable xlf90
      Could not locate executable xlf
      customize GnuFCompiler
      Could not locate executable g77
      Could not locate executable f77
      customize Gnu95FCompiler
      Found executable /usr/bin/gfortran
      customize Gnu95FCompiler
      customize Gnu95FCompiler using config


      At the very end of the whole log the error is:



          compiling C sources
      C compiler: /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl

      compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_LARGE_FILES -Inumpy/core/include -Ibuild/src.aix-6.1-3.6/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/freeware/include/python3.6m -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -c'
      /opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so
      ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
      XCOFF32 object files are not allowed in 64-bit mode.
      collect2: error: ld returned 8 exit status
      ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
      XCOFF32 object files are not allowed in 64-bit mode.
      collect2: error: ld returned 8 exit status
      error: Command "/opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so" failed with exit status 1


      Thanks a lot!!!










      share|improve this question
















      I am trying to install Data Science packages on AIX6.1(one of Unix os).
      I have tried using PIP but it was not properly built and installed, some .so files were not compiled properly after which I tried installing from the source in which I am not able to build it properly.
      I have GCC version 6.3, Fortran compiler installed.
      the command is given:



          # python setup.py build


      the command was executed with errors. Please find below the error log.



          gcc: /tmp/tmpn4o642va/source.c
      /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
      #include <cblas.h>
      ^
      compilation terminated.
      /tmp/tmpn4o642va/source.c:1:19: fatal error: cblas.h: No such file or directory
      #include <cblas.h>
      ^
      compilation terminated.


      some error in the middle part of the whole log:



          openblas_clapack_info:
      customize UnixCCompiler
      customize UnixCCompiler
      libraries openblas,lapack not found in ['/usr/bin/../../opt/freeware/lib', '/opt/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
      NOT AVAILABLE
      .
      .
      .
      /opt/freeware/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'define_macros'
      warnings.warn(msg)
      running build
      running config_cc
      unifing config_cc, config, build_clib, build_ext, build commands --compiler options
      running config_fc
      unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
      running build_src
      build_src
      building py_modules sources
      building library "npymath" sources
      get_default_fcompiler: matching types: '['ibm', 'gnu', 'gnu95']'
      customize IBMFCompiler
      Could not locate executable xlf90
      Could not locate executable xlf
      customize GnuFCompiler
      Could not locate executable g77
      Could not locate executable f77
      customize Gnu95FCompiler
      Found executable /usr/bin/gfortran
      customize Gnu95FCompiler
      customize Gnu95FCompiler using config


      At the very end of the whole log the error is:



          compiling C sources
      C compiler: /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl -I/usr/include -I/opt/freeware/include -I/opt/freeware/include/ncurses -DAIX_GENUINE_CPLUSCPLUS -D_LINUX_SOURCE_COMPAT -Wl,-brtl

      compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_LARGE_FILES -Inumpy/core/include -Ibuild/src.aix-6.1-3.6/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/opt/freeware/include/python3.6m -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -Ibuild/src.aix-6.1-3.6/numpy/core/src/private -Ibuild/src.aix-6.1-3.6/numpy/core/src/npymath -c'
      /opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so
      ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
      XCOFF32 object files are not allowed in 64-bit mode.
      collect2: error: ld returned 8 exit status
      ld: 0711-738 ERROR: Input file build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o:
      XCOFF32 object files are not allowed in 64-bit mode.
      collect2: error: ld returned 8 exit status
      error: Command "/opt/freeware/lib/python3.6/config-3.6m/ld_so_aix /opt/freeware/bin/gcc -maix64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -bI:/opt/freeware/lib/python3.6/config-3.6m/python.exp -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib -L. -L/usr/lib/threads -L/opt/freeware/lib64 -L/opt/freeware/lib -L/usr/lib64 -L/usr/lib build/temp.aix-6.1-3.6/numpy/core/src/dummymodule.o -L/opt/freeware/lib64 -Lbuild/temp.aix-6.1-3.6 -lm -o build/lib.aix-6.1-3.6/numpy/core/_dummy.so" failed with exit status 1


      Thanks a lot!!!







      python numpy gfortran aix openblas






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 7:53









      Mehrdad Pedramfar

      6,34411643




      6,34411643










      asked Nov 21 '18 at 7:47









      Jasmeet SinghJasmeet Singh

      112




      112
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407381%2fnot-able-to-build-and-install-numpy-on-aix6-1%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407381%2fnot-able-to-build-and-install-numpy-on-aix6-1%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          鏡平學校

          ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

          Why https connections are so slow when debugging (stepping over) in Java?