我正在尝试使用sphinx记录我的MATLAB类。但每当我想运行make html
时,我都会收到以下错误:
% make html
sphinx-build -b html -d _build/doctrees . _build/html
Running Sphinx v1.4.6
Extension error:
Could not import extension sphinxcontrib.matlab (exception: No module named 'std')
make: *** [Makefile:53: html] Error 1
我在ArchLinux上并尝试了以下安装方式,但都导致了同样的问题:
尝试1:
yaourt -S python-sphinx # (was already installed by default, just to show that the package came from arch repo)
sudo pip install -U sphinxcontrib-matlabdomain
尝试2:
yaourt -R python-sphinx # (I also removed all dependencies)
sudo pip -U install sphinx
sudo pip -U install -U sphinxcontrib-matlabdomain
在两种情况下都不起作用(总是来自上面的错误)。在每次尝试中,我还通过
验证了std
模块
# ll /usr/lib/python3.5/site-packages/sphinxcontrib*
-rw-r--r-- 1 root root 326 Sep 28 11:02 /usr/lib/python3.5/site-packages/sphinxcontrib_blockdiag-1.5.5-py2.7-nspkg.pth
-rw-r--r-- 1 root root 326 Sep 28 11:00 /usr/lib/python3.5/site-packages/sphinxcontrib_matlabdomain-0.2.7-py3.5-nspkg.pth
/usr/lib/python3.5/site-packages/sphinxcontrib:
total 152
-rw-r--r-- 1 root root 11457 Sep 28 11:02 blockdiag.py
-rw-r--r-- 1 root root 37815 Jun 20 2015 mat_documenters.py
-rw-r--r-- 1 root root 27529 Oct 7 2014 matlab.py
-rw-r--r-- 1 root root 46088 Jun 20 2015 mat_types.py
drwxr-xr-x 1 root root 126 Sep 28 11:03 __pycache__
-rw-r--r-- 1 root root 22278 Feb 7 2014 std.py
/usr/lib/python3.5/site-packages/sphinxcontrib_blockdiag-1.5.5.dist-info:
total 32
-rw-r--r-- 1 root root 1033 Sep 28 11:02 DESCRIPTION.rst
-rw-r--r-- 1 root root 4 Sep 28 11:03 INSTALLER
-rw-r--r-- 1 root root 2127 Sep 28 11:02 METADATA
-rw-r--r-- 1 root root 1193 Sep 28 11:02 metadata.json
-rw-r--r-- 1 root root 14 Sep 28 11:02 namespace_packages.txt
-rw-r--r-- 1 root root 1054 Sep 28 11:03 RECORD
-rw-r--r-- 1 root root 14 Sep 28 11:02 top_level.txt
-rw-r--r-- 1 root root 110 Sep 28 11:02 WHEEL
/usr/lib/python3.5/site-packages/sphinxcontrib_matlabdomain-0.2.7-py3.5.egg-info:
total 40
-rw-r--r-- 1 root root 1 Sep 28 11:00 dependency_links.txt
-rw-r--r-- 1 root root 487 Sep 28 11:00 installed-files.txt
-rw-r--r-- 1 root root 14 Sep 28 11:00 namespace_packages.txt
-rw-r--r-- 1 root root 1 Jun 20 2015 not-zip-safe
-rw-r--r-- 1 root root 8547 Sep 28 11:00 PKG-INFO
-rw-r--r-- 1 root root 28 Sep 28 11:00 requires.txt
-rw-r--r-- 1 root root 549 Sep 28 11:00 SOURCES.txt
-rw-r--r-- 1 root root 14 Sep 28 11:00 top_level.txt
P.S。:我的默认python版本为3.5.2
编辑1:
% head $(which sphinx-build)
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from sphinx import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
% which sphinx-build
/usr/bin/sphinx-build
% sphinx-build --version
Sphinx (sphinx-build) 1.4.6
% python --version
Python 3.5.2
% /usr/bin/python --version
Python 3.5.2
答案 0 :(得分:1)
sphinx-contrib存储库中的扩展似乎适用于Python 2.导入规则在Python 3中已经改变,因此当使用Python 2解释器运行Python 3代码时可能会发生此类错误。
解决方案是为Python 2安装Sphinx及其所有依赖项。您的发行版可能有python2-sphinx
。在Fedora和Ubuntu上,包python-*
始终是Python 2或两者,python3-*
是Python 3包。
在Arch Linux上我知道python
符号链接到python3
。因此可能会有其他python2-*
个包。安装pip2
(因为{Linux上pip
可能是pip3
)并使用它来安装Sphinx。
您可以通过运行head -n 1 $(which sphinx-build)
找出调用哪个解释器,然后检查路径。
/usr/bin/python
:这是Ubuntu或Fedora上的Python 2,Arch Linux上的Python 3 /usr/bin/python3
:绝对是Python 3 /usr/bin/python2
:绝对是Python 2 /usr/bin/env python
:与其他人类似。否则,可以在print
内部执行conf.py
Python版本,以便明确打印。
答案 1 :(得分:1)
sphinxcontrib-matlabdomain的最新版本(> = 0.2.11)支持Python 2和3.我认为这应该可以解决您看到的问题。