在Ubuntu 14.04下,我安装了python 2.76。然后scipy如here所示,即通过
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
python -c "import numpy; numpy.test()"
测试完成且没有错误,但python -c "import scipy; scipy.test()"
导致:
======================================================================
追踪(最近一次通话): 在runTest中的文件“/usr/lib/python2.7/dist-packages/nose/case.py”,第197行 self.test(* self.arg) 在test_kink中输入文件“/usr/lib/python2.7/dist-packages/scipy/interpolate/tests/test_fitpack.py”,第333行 splder(spl2,1)#应该工作 文件“/usr/lib/python2.7/dist-packages/scipy/interpolate/fitpack.py”,第1186行,在splder中 “并且不可微分%d次”)%n) ValueError:样条曲线具有内部重复结并且不可微分1次
在77.338s中跑8936测试
失败(KNOWNFAIL = 115,SKIP = 191,错误= 1)
我该怎么办?