2012-03-28 22 views
2

我試圖開始使用獅身人面像來記錄我的一些小項目, ,但似乎我無法讓它工作。獅身人面像:試圖autodoc包時導入錯誤

我已經搜遍了,但是我嘗試過的所有東西都沒有修復導入錯誤。

這也正是我在做什麼:

[email protected]:~$ mkdir sphinx-test 
[email protected]:~$ cd sphinx-test/ 
[email protected]:~/sphinx-test$ mkdir -p src/package doc 
[email protected]:~/sphinx-test$ touch src/package/__init__.py 
[email protected]:~/sphinx-test$ echo '"""Docstring 1""" 
> class Test(object): 
>  """Docstring 2""" 
>  
>  def method(self): 
>   """Docstring 3""" 
>   pass 
> ' > src/package/testing.py 
[email protected]:~/sphinx-test$ cd doc 
[email protected]:~/sphinx-test/doc$ sphinx-quickstart 
Welcome to the Sphinx 1.0.1 quickstart utility. 

Please enter values for the following settings (just press Enter to 
accept a default value, if one is given in brackets). 

Enter the root path for documentation. 
> Root path for the documentation [.]: 

You have two options for placing the build directory for Sphinx output. 
Either, you use a directory "_build" within the root path, or you separate 
"source" and "build" directories within the root path. 
> Separate source and build directories (y/N) [n]: y 

Inside the root directory, two more directories will be created; "_templates" 
for custom HTML templates and "_static" for custom stylesheets and other static 
files. You can enter another prefix (such as ".") to replace the underscore. 
> Name prefix for templates and static dir [_]: 

The project name will occur in several places in the built documentation. 
> Project name: testing 
> Author name(s): A B 

Sphinx has the notion of a "version" and a "release" for the 
software. Each version can have multiple releases. For example, for 
Python the version is something like 2.5 or 3.0, while the release is 
something like 2.5.1 or 3.0a1. If you don't need this dual structure, 
just set both to the same value. 
> Project version: 0.1 
> Project release [0.1]: 

The file name suffix for source files. Commonly, this is either ".txt" 
or ".rst". Only files with this suffix are considered documents. 
> Source file suffix [.rst]: 

One document is special in that it is considered the top node of the 
"contents tree", that is, it is the root of the hierarchical structure 
of the documents. Normally, this is "index", but if your "index" 
document is a custom template, you can also set this to another filename. 
> Name of your master document (without suffix) [index]: 

Sphinx can also add configuration for epub output: 
> Do you want to use the epub builder (y/N) [n]: 

Please indicate if you want to use one of the following Sphinx extensions: 
> autodoc: automatically insert docstrings from modules (y/N) [n]: y 
> doctest: automatically test code snippets in doctest blocks (y/N) [n]: y 
> intersphinx: link between Sphinx documentation of different projects (y/N) [n]: 
> todo: write "todo" entries that can be shown or hidden on build (y/N) [n]: 
> coverage: checks for documentation coverage (y/N) [n]: 
> pngmath: include math, rendered as PNG images (y/N) [n]: 
> jsmath: include math, rendered in the browser by JSMath (y/N) [n]: 
> ifconfig: conditional inclusion of content based on config values (y/N) [n]: 
> viewcode: include links to the source code of documented Python objects (y/N) [n]: 

A Makefile and a Windows command file can be generated for you so that you 
only have to run e.g. `make html' instead of invoking sphinx-build 
directly. 
> Create Makefile? (Y/n) [y]: 
> Create Windows command file? (Y/n) [y]: 

Finished: An initial directory structure has been created. 

You should now populate your master file ./source/index.rst and create other documentation 
source files. Use the Makefile to build the docs, like so: 
    make builder 
where "builder" is one of the supported builders, e.g. html, latex or linkcheck. 

[email protected]:~/sphinx-test/doc$ vim source/conf.py # sys.path.append('../../src') 
[email protected]:~/sphinx-test/doc$ echo ' 
> Title 
> ===== 
> 
> .. automodule:: package.testing 
>  :members: 
> 
> ..autoclass:: package.testing.Test 
>  :members: 
> 
> .. automethod:: package.testing.Test.method 
> ' > source/testing.rst 
[email protected]:~/sphinx-test/doc$ vim source/testing.rst #correct the typo: ..autoclass -> .. autoclass 
[email protected]:~/sphinx-test/doc$ vim source/index.rst #add testing in the toctree 
[email protected]:~/sphinx-test/doc$ make html 
sphinx-build -b html -d build/doctrees source build/html 
Making output directory... 
Running Sphinx v1.0.1 
loading pickled environment... not yet created 
building [html]: targets for 2 source files that are out of date 
updating environment: 2 added, 0 changed, 0 removed 
reading sources... [100%] testing                      
/home/giacomo/sphinx-test/doc/source/testing.rst:5: (WARNING/2) autodoc can't import/find module 'package.testing', it reported error: "No module named package.testing", please check your spelling and sys.path 

/home/giacomo/sphinx-test/doc/source/testing.rst:8: (WARNING/2) autodoc can't import/find class 'package.testing.Test', it reported error: "No module named package.testing", please check your spelling and sys.path 

/home/giacomo/sphinx-test/doc/source/testing.rst:11: (WARNING/2) autodoc can't import/find method 'package.testing.Test.method', it reported error: "No module named package.testing", please check your spelling and sys.path 

looking for now-outdated files... none found 
pickling environment... done 
checking consistency... done 
preparing documents... done 
writing output... [100%] testing                      
writing additional files... genindex search 
copying static files... done 
dumping search index... done 
dumping object inventory... done 
build succeeded, 3 warnings. 

Build finished. The HTML pages are in build/html. 

我試過也是這個:

[email protected]:~/sphinx-test/doc$ rm build/html/* 
rm: impossibile rimuovere "build/html/_sources": È una directory 
rm: impossibile rimuovere "build/html/_static": È una directory 
[email protected]:~/sphinx-test/doc$ PYTHONPATH="../src" make html 
sphinx-build -b html -d build/doctrees source build/html 
Running Sphinx v1.0.1 
loading pickled environment... done 
building [html]: targets for 2 source files that are out of date 
updating environment: 0 added, 0 changed, 0 removed 
looking for now-outdated files... none found 
preparing documents... done 
writing output... [100%] testing                      
writing additional files... genindex search 
copying static files... done 
dumping search index... done 
dumping object inventory... done 
build succeeded. 

Build finished. The HTML pages are in build/html. 

輸出似乎令人鼓舞,但實際上,如果我打開index.html,按標題測試模塊的頁面完全空白。它只是標題,沒有文檔字符串或其他。

有沒有人知道我在這裏做錯了什麼?我認爲放置.. automodule + .. autoclass會自動顯示這些文檔字符串,但我看不到它們。

編輯:

固定的,但我不明白爲什麼...... 這裏就是我所做的這個時候(我認爲這是完全一樣的前)

[email protected]:~$ mkdir sphinx-tests 
[email protected]:~$ cd sphinx-tests/ 
[email protected]:~/sphinx-tests$ mkdir -p src/package doc 
[email protected]:~/sphinx-tests$ touch src/package/__init__.py 
[email protected]:~/sphinx-tests$ echo '"""Docstring 1""" 
> class Test(object): 
>  """Docstring 2""" 
>  def method(self): 
>   """Docstring 3""" 
>   pass 
> ' > src/package/testing.py 
[email protected]:~/sphinx-tests$ cd doc 
[email protected]:~/sphinx-tests/doc$ sphinx-quickstart 
Welcome to the Sphinx 1.0.1 quickstart utility. 

Please enter values for the following settings (just press Enter to 
accept a default value, if one is given in brackets). 

Enter the root path for documentation. 
> Root path for the documentation [.]: 

You have two options for placing the build directory for Sphinx output. 
Either, you use a directory "_build" within the root path, or you separate 
"source" and "build" directories within the root path. 
> Separate source and build directories (y/N) [n]: y 

Inside the root directory, two more directories will be created; "_templates" 
for custom HTML templates and "_static" for custom stylesheets and other static 
files. You can enter another prefix (such as ".") to replace the underscore. 
> Name prefix for templates and static dir [_]: 

The project name will occur in several places in the built documentation. 
> Project name: Test 
> Author name(s): A B 

Sphinx has the notion of a "version" and a "release" for the 
software. Each version can have multiple releases. For example, for 
Python the version is something like 2.5 or 3.0, while the release is 
something like 2.5.1 or 3.0a1. If you don't need this dual structure, 
just set both to the same value. 
> Project version: 0.1 
> Project release [0.1]: 

The file name suffix for source files. Commonly, this is either ".txt" 
or ".rst". Only files with this suffix are considered documents. 
> Source file suffix [.rst]: 

One document is special in that it is considered the top node of the 
"contents tree", that is, it is the root of the hierarchical structure 
of the documents. Normally, this is "index", but if your "index" 
document is a custom template, you can also set this to another filename. 
> Name of your master document (without suffix) [index]: 

Sphinx can also add configuration for epub output: 
> Do you want to use the epub builder (y/N) [n]: 

Please indicate if you want to use one of the following Sphinx extensions: 
> autodoc: automatically insert docstrings from modules (y/N) [n]: y 
> doctest: automatically test code snippets in doctest blocks (y/N) [n]: y 
> intersphinx: link between Sphinx documentation of different projects (y/N) [n]: 
> todo: write "todo" entries that can be shown or hidden on build (y/N) [n]: 
> coverage: checks for documentation coverage (y/N) [n]: 
> pngmath: include math, rendered as PNG images (y/N) [n]: 
> jsmath: include math, rendered in the browser by JSMath (y/N) [n]: 
> ifconfig: conditional inclusion of content based on config values (y/N) [n]: 
> viewcode: include links to the source code of documented Python objects (y/N) [n]: 

A Makefile and a Windows command file can be generated for you so that you 
only have to run e.g. `make html' instead of invoking sphinx-build 
directly. 
> Create Makefile? (Y/n) [y]: 
> Create Windows command file? (Y/n) [y]: 

Finished: An initial directory structure has been created. 

You should now populate your master file ./source/index.rst and create other documentation 
source files. Use the Makefile to build the docs, like so: 
    make builder 
where "builder" is one of the supported builders, e.g. html, latex or linkcheck. 

[email protected]:~/sphinx-tests/doc$ echo ' 
> Title 
> ===== 
> 
> .. automodule:: package.testing 
>  :members: 
> 
> .. autoclass:: package.testing.Test 
>  :members: 
> 
> .. automethod:: package.testing.Test.method 
> ' > source/testing.rst 
[email protected]:~/sphinx-tests/doc$ vim source/index.rst # add testing to toctree 
[email protected]:~/sphinx-tests/doc$ vim source/conf.py  #sys.path.append('../../src') 
[email protected]:~/sphinx-tests/doc$ make html 
sphinx-build -b html -d build/doctrees source build/html 
Making output directory... 
Running Sphinx v1.0.1 
loading pickled environment... not yet created 
building [html]: targets for 2 source files that are out of date 
updating environment: 2 added, 0 changed, 0 removed 
reading sources... [100%] testing                      
looking for now-outdated files... none found 
pickling environment... done 
checking consistency... done 
preparing documents... done 
writing output... [100%] testing                      
writing additional files... genindex py-modindex search 
copying static files... done 
dumping search index... done 
dumping object inventory... done 
build succeeded. 

Build finished. The HTML pages are in build/html. 
[email protected]:~/sphinx-tests/doc$ 

BTW:對於許多代碼行感到抱歉。

編輯2:

我發現,如果我清除構建/ html目錄中沒有錯誤被車博士爲模塊生成的文件顯示爲空白。沒有顯示文檔字符串(即使之前我說它是固定的文檔字符串顯示正確...)。

如果我將空的文件夾_sources和_static留在build/html文件夾中,那麼autodoc將不會找到這些模塊。

真的,我不明白髮生了什麼事。

編輯3:

好吧,現在這是很瘋狂:

[email protected]:~/Progetti/TagEditor/doc$ rm -fr build/html/* 
[email protected]:~/Progetti/TagEditor/doc$ make html 
sphinx-build -b html -d build/doctrees source build/html 
[...]taglib                      
/home/giacomo/Progetti/TagEditor/doc/source/fields.rst:4: (WARNING/2) autodoc can't import/find module 'taglib.fields', it reported error: "No module named taglib.fields", please check your spelling and sys.path 

/home/giacomo/Progetti/TagEditor/doc/source/taglib.rst:4: (WARNING/2) autodoc can't import/find module 'taglib', it reported error: "No module named taglib", please check your spelling and sys.path 
[...] 
build succeeded, 2 warnings. 

Build finished. The HTML pages are in build/html. 
[email protected]:~/Progetti/TagEditor/doc$ rm -fr build/html/* 
[email protected]:~/Progetti/TagEditor/doc$ make html 
sphinx-build -b html -d build/doctrees source build/html 
[...] 
build succeeded. 

Build finished. The HTML pages are in build/html. 

好像程序不確定性,但「作品」隨機(仍然模塊文檔文件是空的) 。

現在我開始認爲改變軟件可能會更好。

編輯4:

我重寫模塊之一,現在車博士的作品完美... 但我沒有任何模塊中的任何改變進口(我想,也許這是我模塊的錯),所以我對這些結果的變化感到困惑。

對不起,寫了這麼長的問題沒有答案。無論如何,我仍然期待有人知道發生了什麼事。

+0

路徑是否正確?你做'sys.path.append('../../ src')',它基本上意味着'〜/ src',但是模塊在'〜/ sphinx-test/doc/source'中。也許我誤解了一些東西?另外,嘗試在路徑上使用'os.path.abspath()'。 – 2012-03-28 18:09:14

+0

是的,他們是。起初,我嘗試過'../src',但似乎autodoc會將工作目錄更改爲doc/source,所以../ - > doc而不是doc的父項。 無論如何,現在我已經重複了我之前做過的事情,並且模塊得到了正確的記錄。我不知道是什麼解決了這個問題。同時,我沒有樹脂安裝/安裝/卸載任何東西,只是重新啓動筆記本電腦。 – Bakuriu 2012-03-28 19:01:29

回答

3

獅身人面像醃製其環境和toctree。我有時會用這種「緩存」來體驗奇怪的行爲。

您可以在make html之前使用make clean(其將rm整個builddir)。因此,所有內容都是從您更改的文件中讀取的,可能的錯誤將被刪除

+0

非常感謝!這解釋了發生了什麼。 無論如何他們應該記錄它......我的意思是打電話「提供幫助」並不表明這種可能性! – Bakuriu 2012-04-04 18:06:38