Jupyter Lab 内核在导入库时崩溃

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

我按照此处的说明(https://nest-simulator.readthedocs.io/en/stable/installation/user.html#user-install)通过 sudo apt-get install 命令安装 NEST:

sudo add-apt-repository ppa:nest-simulator/nest
sudo apt-get update
sudo apt-get install nest

我这样做是为了测试它:

python3
import nest

但它不起作用。相反,它会出现一个错误,指出

Segmentation fault (core dumped)

我尝试在单独的 conda 环境中进行设置,并在其中重新安装了 NEST,但仍然遇到相同的错误。

仅供参考,我的系统规格是 Linux Mint 22.04,基于 Ubuntu 构建。让我感到困惑的是 Ubuntu 是基于 debian 构建的,但他们的安装页面上有 2 个单独的安装说明。 蟒蛇版本:3.11.4 NEST 版本:3.5

如有任何帮助,我们将不胜感激。

python jupyter nest jupyter-lab
1个回答
0
投票

我想我发现了问题。 NEST模拟器仅兼容python 3.6、3.7、3.8和3.9,但不兼容以上版本。我将尝试将 python 降级到 3.9,我认为这会起作用。

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