2

WindowsでPythonSphinxを使用して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 に答える