Installation on Linux

このガイドでは次のトピックを紹介します:

  1. Installing Dependencies

  2. Downloading the Repository

  3. ビルド環境のセットアップ

Installing Dependencies

Below are listed the installation commands for popular Linux distributions.

For the appropriate system, run the command in a terminal:

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

警告

Python 3.10 is not yet support, it is recommended to use Python 3.9 or earlier.

Downloading the Repository

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.

  • SVN のチェックアウトによって追加された blender_docs フォルダーに移行してください:

    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 the pip3 command:

    sudo pip3 install -r requirements.txt
    

注釈

時々ディペンデンシーを最新版にした方がいいでしょう。最新版にするには:

sudo pip3 install -r requirements.txt --upgrade