Building on Windows

將RST文件轉換為美觀的HTML頁面,有兩種編譯方式。

檔案瀏覽器

C:\blender_docs 資料夾執行 make.bat .

Tip

建立一個桌面捷徑 make.

命令列提示視窗

  1. 或者打開命令列提示視窗,並使用 cd C:\blender_docs 更改工作路徑代碼庫文件夾。

  2. 使用以下指令建立:

    make
    

第一次(或重大變更後)建立過程需要幾分鐘,但下一次建立就只需幾秒鐘。

Note

如果您遇到以 TypeError: an integer is required (got type str) 結束的錯誤,你可能需要安裝舊版的 Babel (Python 函式庫)。

要執行此操作,只需執行:

pip install sphinx "babel<2.0"

預覽本機手冊

Once the docs have been built, all the HTML files can be found inside C:\blender_docs\build\html. Try opening \build\html\index.html in your web browser and read the manual.


Continue with the next step: Editing.