无法在python 3.7上安装igraph

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

我需要通过pip3将python-igraph安装到python 3.7中。当我运行:pip3 install python-igraph时,我收到此消息错误:

命令“/ usr / bin / python3 -u -c”import setuptools,tokenize; file ='/ tmp / pip-build-whiv93xm / python-igraph / setup.py'; f = getattr(tokenize,'open',open )(file); code = f.read()。replace('\ r \ n','\ n'); f.close(); exec(compile(code,file,'exec'))“install - -record /tmp/pip-kbqa7cno-record/install-record.txt --single-version-external-managed --compile --user --prefix =“失败,错误代码为1 / tmp / pip-build-whiv93xm /蟒-的igraph /

有关信息,我在python 2.7上有它。

谢谢。

python python-3.x pip igraph python-3.7
1个回答
1
投票

在安装库之前,您可能需要安装一些依赖项。试试这个:

sudo apt install libxml2-dev libz-dev python-dev python3-dev build-essential

然后继续:

sudo pip3 install python-igraph

我希望这有效

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