我一直在尝试在优胜美地安装mayavi。我已经安装了Numpy,VTK,wxPython和configobj。当我运行sudo pip install mayavi
时,它显示以下错误消息:
Running setup.py install for mayavi
----------------------------------------------------------------------
Building TVTK classes...Assertion failed: ("pre: not_empty" && !IsEmpty()), function
GetAttributesToInterpolate, file /tmp/vtk-MvPwfE/VTK-6.1.0/Common/DataModel
/vtkGenericAttributeCollection.cxx, line 453.
Complete output from command /usr/local/opt/python/bin/python2.7 -c "import
setuptools,tokenize;__file__='/private/tmp/pip_build_root/mayavi/setup.py';
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('rn', 'n'),
__file__, 'exec'))" install --record /tmp/pip-haj8cd-record/install-record.txt
--single-version-externally-managed --compile:
running install
running build
我不知道如何处理这个问题。
以下内容可能会有所帮助。
{20:06:44}~/test ➭ which pip
/usr/local/bin/pip
{20:07:13}~/test ➭ which python
/usr/local/bin/python
{20:07:25}~/test ➭ python
Python 2.7.9 (default, Dec 19 2014, 06:00:59)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.56)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import vtk
>>> vtk
<module 'vtk' from '/usr/local/lib/python2.7/site-packages/vtk/__init__.pyc'>
>>>
我通过pip解决了同样的问题:
pip install git+https://github.com/enthought/mayavi.git
使用此格式,您可以使用 pip 从特定的 git 存储库进行安装。一般:
pip install git+(web address of git repo)
我git克隆了mayavi,并运行了python setup.py install
。它有效。
使用 pypi 中的焦油和 pip 时,我遇到了类似的问题。我从Github下载了当前的zip文件,并将其扩展到临时目录中。由于某种原因,我不得不运行两次"python setup.py install"命令,然后安装才能完成。Mayavi 模块现在工作正常。我运行在 openSUSE 13.2 上。