我正在尝试使用 pip 在虚拟环境中安装 python pandas 包。
在我的开发机器上它安装正确,但现在我在服务器上尝试,它似乎卡住了:
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
顶部显示 ifort 以 46% 的 CPU 运行。
有什么方法可以让我判断它是否正常工作(例如,我可以检查它正在更新的文件吗),或者它是否陷入了循环?
截至目前已运行40分钟。
答案1
获取进程的pid(pidof process
或top
或等)并使用。如果您看到它轮询或不断重复调用相同的系统调用,则它可能陷入了无限循环。要确定它是否陷入了无限循环,您必须使用 strace 的时间功能(尽管这只是一个假设)。ps
strace -p <pid>
如果您只是执行普通操作,那么strace -p <pid>
您实际上只会看到系统调用,而不会看到它们之间传递的数据;要查看这些数据,还需要指定参数-s
。如果进程自行分叉,您将不会在 strace 中看到其任何子进程,因此请务必指定-f
以查看子进程正在执行的系统调用。
您可能还想查看系统调用之间需要多长时间;为此,您可以使用-tt
和-r
和-T
。如果有轮询,则等待文件创建是完全正常的。