不得不吐槽一句,像Graph-tool这种工具,这么麻烦的安装过程和限制条件,注定没有多少人用啊!
我在两个Ubuntu系统上试着安装,都报了一样的错,实在是郁闷。看到Graph-tool的邮件列表里有人问了类似的问题:http://main-discussion-list-for-the-graph-tool-project.982480.n3.nabble.com/Problem-with-configure-and-Boost-Python-td4024944.html
下面有个人问:
Did you compile Python yourself? Did you configure it with --enable-shared?
Is there a file named /usr/local/lib/libpython2.7.so?
这个问题真是把我雷到了,你一个破工具,还要管人家是怎么样装python的?没办法,只有把Python 2.7卸载了:https://www.jianshu.com/p/e73b5731d334
重新安装一遍:首先在这里下载源码压缩包:https://www.python.org/downloads/release/python-2718/
然后依次输入:
tar zxvf Python-2.7.18.tgz
cd Python-2.7.18
./configure --prefix=/usr/local --enable-shared
make
sudo make install
sudo ln -s /usr/local/bin/python2.7 /usr/bin/python
最后一条语句是建立软链接用的。
虽然重装了python2,但是graph-tool还是装不上,放弃了,这个工具真的是太扯了!!!