我有一个调用python脚本的php webserver。目前我还没有在python文件中编写任何代码,它所做的只是以下内容:
def get_pandas_path():
import pandas
pandas_path = pandas.__path__[0]
return pandas_path
dict_tree = Tree(get_pandas_path(), prefix='pandas', excludes=["*.pyc"])
a.datas += dict_tree
a.binaries = filter(lambda x: 'pandas' not in x[0], a.binaries)
使用php(来自localhost)运行python脚本会引发分段错误(核心转储)。如果我删除了scipy.stats的导入,则不会发生分段错误。
我们非常感谢您协助确定相同原因。
P.S:我正在使用linux(Ubuntu 14.04)。 PHP版本5.6.23。 (Apache / 2.4.18(Unix),使用XAMPP)
由于