Instalação no Linux¶
Este guia aborda os seguintes tópicos:
Instalando as dependências¶
Abaixo, estão listados os comandos de instalação para as distribuições Linux mais populares.
Para o sistema apropriado, execute o seguinte comando em um terminal:
Debian/Ubuntu:
sudo apt-get install python3 python3-pip git git-lfs
git lfs install --skip-repo
Redhat/Fedora:
sudo dnf install python python-pip git git-lfs
git lfs install --skip-repo
Arch Linux:
sudo pacman -S python python-pip git git-lfs
git lfs install --skip-repo
Baixando o repositório¶
Simply check out the Blender Manual’s repository using:
cd ~
git clone https://projects.blender.org/blender/blender-manual.git
The repository will now be downloaded which may take a few minutes depending on your internet connection.
Configurando o ambiente de construção¶
Dica
It is recommended to setup and activate a virtual Python environment where dependencies will be installed:
python3 -m venv .venv
source .venv/bin/activate
Repeat the source .venv/bin/activate
command to re-activate the virtual environment,
whenever you open a new terminal to build the documentation.
This step may be required on some distributions that enforce PEP 668.
Open a Terminal window.
Enter the
blender-manual
folder which was just added bygit clone
:cd ~/blender-manual
Dentro desta pasta, existe um arquivo chamado
requirements.txt
, que contém uma lista de todas as dependências que precisamos. Para instalar estas dependências, podemos utilizar o comandopip3`
:pip3 install -r requirements.txt
Nota
Every now and then you may want to make sure your dependencies are up to date using:
pip3 install -r requirements.txt --upgrade