2

当我尝试在 Windows 下使用 Python Sphinx 生成 html 文档时,出现以下错误:

IOError: [Errno 2] No such file or directory:
'c:\\python27\\sphinx.egg\\sphinx\\pycode\\Grammar.txt'

但是,当我打开 sphinx.egg 时,文件“Grammar.txt”存在......

这是它提供的日志

# Sphinx version: 1.1.3
# Python version: 2.7.3
# Docutils version: 0.9.1 release
# Jinja2 version: 2.6 Traceback (most recent call last):
File "c:\python27\sphinx.egg\sphinx\cmdline.py", line 188, in main
    warningiserror, tags)   
File "c:\python27\sphinx.egg\sphinx\application.py", line 114, in __init__
    self.setup_extension(extension)
File "c:\python27\sphinx.egg\sphinx\application.py", line 247, in
setup_extension
    mod = __import__(extension, None, None, ['setup'])
File "c:\python27\sphinx.egg\sphinx\ext\autodoc.py", line 26, in <module>  
File "c:\python27\sphinx.egg\sphinx\pycode\__init__.py", line 25, in <module>
File "c:\python27\sphinx.egg\sphinx\pycode\pgen2\driver.py", line 126, in load_grammar
    g = pgen.generate_grammar(gt)
File "c:\python27\sphinx.egg\sphinx\pycode\pgen2\pgen.py", line 383, in generate_grammar
    p = ParserGenerator(filename)
File "c:\python27\sphinx.egg\sphinx\pycode\pgen2\pgen.py", line 15, in  __init__
    stream = open(filename) IOError: [Errno 2] No such file or directory: 'c:\\python27\\sphinx.egg\\sphinx\\pycode\\Grammar.txt'

任何人都知道为什么?

4

1 回答 1

2

我终于找到了为什么找不到文件“Grammar.txt”。起初,我将 sphinx-quickstart.exe 移动到我的源文件夹中。相反,最好(也是正确的做法)从其默认文件夹启动 sphinx-quickstart.exe 然后在问题处:

> 输入文档的根路径。

> 文档的根路径 [.]:“PathToYourSourceFolder”

您在这个问题中输入您的源文件夹路径。

希望这对某人有帮助!

于 2012-07-26T19:51:12.110 回答