Installation on Windows

Esta guía cubre los siguientes temas:

  1. Instalando Python (usado para «convertir» los archivos fuente en archivos HTML)

  2. Instalando SVN y descargando el Repositorio

  3. Estableciendo el Entorno de Compilación

Instalando 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.

Instalando SVN y Descargando el Repositorio

En esta guía, usaremos TortoiseSVN, aunque cualquier cliente de Subversion bastará.

  1. Download TortoiseSVN for Windows.

  2. Instale TortoiseSVN con el asistente de instalación. Al elegir qué características serán instaladas, es recomendable que habilite las herramientas cliente de la línea de comandos para darle acceso al SVN desde la línea de comandos (no hay nada de malo en hacer esto, y puede ser útil si es que en algún momento se encuentra con un problema).

  3. Una vez que ha terminado la instalación, cree una nueva carpeta que contenga todo lo relacionado con el Manual de Blender. En esta guía, usaremos C:\blender_docs.

  4. Open the new folder, right-click and choose SVN Checkout… from the context menu.

  5. En el campo de URL of repository, ingrese: https://svn.blender.org/svnroot/bf-manual/trunk/blender_docs.

  6. En el campo Checkout directory, ingrese: C:\blender_docs.

  7. Click OK – the repository will now be downloaded which may take a few minutes depending on your internet connection.

Estableciendo el Entorno de Compilación

  • 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...
    

Durante la instalación, pueden aparecer algunas advertencias, pero no se preocupe por ellas. Sin embargo, si ocurre algún error, podría causar algunos problemas.

Nota

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.