我在Linux上使用屏幕在我已连接到的机器上。我有一些奇怪的错误,代码在不在屏幕上时工作但在screen
中失败。
看起来numpy在屏幕上无法正常工作。例如,在命令行中,在screen
中:
$ python
Python 2.7.13 (default, Nov 23 2017, 15:37:09)
[GCC 6.3.0 20170406] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.ceil(1.5)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'ceil'
但是当不在screen
时,上面运行得很好。我无法找到任何关于这种奇怪行为的描述。