进程已完成,退出代码为 134(被信号 6:SIGABRT 中断)

问题描述 投票:0回答:1

我有一小段代码,无法在pycharm虚拟环境中运行

INPUT_FILE_PATH = './data/'
# Press the green button in the gutter to run the script.
if __name__ == '__main__':

    print_hi('PyCharm')
    print('loading data ... ')
    hemo_filename = INPUT_FILE_PATH + 'hemo_ALl_seq.txt'
    hemo_data = np.loadtxt(hemo_filename, delimiter='\t', skiprows=1, dtype=str)

显示如下错误并结束运行: 进程完成,退出代码为 134(被信号 6 中断:SIGABRT)

Process finished with exit code 134 (interrupted by signal 6: SIGABRT)

可能是什么原因?

python python-3.x pycharm
1个回答
0
投票

我在 xubuntu 机器上遇到了同样的错误。

安装 JRE 解决了我的问题。我关注了这篇文章

无需安装 Oracle JDK。我安装了

default-jre
default-jdk
并设置了
JAVA_HOME
环境变量 + 重新启动。

© www.soinside.com 2019 - 2024. All rights reserved.