How do I tell if a Python pip install is working correctly or hanging?

Posted by wobbily_col on Server Fault See other posts from Server Fault or by wobbily_col
Published on 2013-11-06T09:45:58Z Indexed on 2013/11/06 9:55 UTC
Read the original article Hit count: 223

Filed under:
|
|

I am trying to install the python pandas package in a virtualenv using pip.

On my development machine it installed correctly, but now I am trying on the server, it gets so far then it seems to get stuck:

 warnings.warn(LapackSrcNotFoundError.__doc__)
/apps/PYTHON/2.7.3/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
  warnings.warn(msg)
non-existing path in 'numpy/distutils': 'site.cfg'
non-existing path in 'numpy/lib': 'benchmarks'
Could not locate executable gfortran
Could not locate executable f95
Found executable /apps/modules/wrappers/fortran/ifort

Top shows ifort running at 46% cpu.

Is there any way I can tell if this is working correctly (can I check files it is updating for example), or if it is stuck in a loop?

It has been running for 40 minutes so far.

© Server Fault or respective owner

Related posts about python

Related posts about install