Установка на Linux¶
Это руководство покрывает следующие темы:
Установка зависимостей¶
Ниже перечислены команды установки для популярных дистрибутивов Linux.
Запустите следующую команду в терминале соответствующей системы:
- Debian/Ubuntu
sudo apt-get install python3 python3-pip subversion
- Redhat/Fedora
sudo yum install python python-pip
- Arch Linux
sudo pacman -S python python-pip subversion
Скачивание хранилища¶
Simply check out the Blender Manual’s repository using:
cd ~
svn checkout https://svn.blender.org/svnroot/bf-manual/trunk/blender_docs
The repository will now be downloaded which may take a few minutes depending on your internet connection.
Установка окружения сборки¶
Open a Terminal window.
Enter the
blender_docs
folder which was just added by the SVN checkout:cd ~/blender_docs
Inside that folder is a file called
requirements.txt
which contains a list of all the dependencies we need. To install these dependencies, we can use thepip3
command:sudo pip3 install -r requirements.txt
Примечание
Every now and then you may want to make sure your dependencies are up to date using:
sudo pip3 install -r requirements.txt --upgrade
Continue with the next step: Building.