Installation on Windows

Это руководство покрывает следующие темы:

  1. Установка Python (используется для «преобразования» исходных файлов в HTML)
  2. Установка SVN и скачивание хранилища
  3. Установка окружения сборки

Установка Python

  1. Download the Python installation package for Windows. In this guide version 3.6.x is used.

  2. Install Python with the installation wizard. Please make sure that you enable the «Add Python to PATH» option:

    ../../../_images/about_contribute_install_windows_installer.png

    The option must be enabled so you can build the manual with the make script.

    All other settings can remain as set by default.

Установка SVN и скачивание хранилища

В этом руководстве мы будем использовать TortoiseSVN, хотя подойдёт любой клиент Subversion.

  1. Download TortoiseSVN for Windows.
  2. Установите TortoiseSVN, следуя инструкциям мастера по установке. При выборе устанавливаемых компонент мы рекомендуем вам включить пункт инструменты командной строки, чтобы вы имели доступ к SVN из командной строки (в нём нет никакого вреда, но он может быть полезен при возникновении каких-либо проблем).
  3. После того, как установка будет завершена, создайте новую папку, которая будет содержать всё, связанное с руководством по Blender. В данном руководстве мы будем использовать папку C:\blender_docs.
  4. Open the new folder, right-click and choose SVN Checkout… from the context menu.
  5. В поле URL в хранилище введите: https://svn.blender.org/svnroot/bf-manual/trunk/blender_docs.
  6. В поле Извлечь в папку введите: C:\blender_docs.
  7. Click OK – the repository will now be downloaded which may take a few minutes depending on your internet connection.

Установка окружения сборки

  • Open a Command Prompt. (Run as Administrator)

  • Enter the blender_docs folder which was just added by the SVN checkout:

    cd C:\blender_docs
    
  • Inside that folder is a file called requirements.txt which contains a list of all the dependencies we need. Install all the dependencies using Python’s pip command:

    pip install -r requirements.txt
    
  • If all goes well, you should see the following message when it is finished:

    Successfully installed Jinja2 MarkupSafe Pygments Sphinx docutils sphinx-rtd-theme Cleaning up...
    

Во время установки могут показываться некоторые предупреждения, не следует о них беспокоиться. Однако, если возникнут ошибки, они могут вызвать проблемы.

Примечание

Every now and then you may want to make sure your dependencies are up to date using:

pip install -r requirements.txt --upgrade

Continue with the next step: Building.