Instalasi di macOS

Panduan ini mencakup topik-topik berikut:

  1. Menginstal Dependensi

  2. Mengunduh Repositori

  3. Menyiapkan Lingkungan Build

Catatan

Panduan ini sangat tergantung dengan alat command-line. Ini mengasumsikan Anda setidaknya kenal dengan aplikasi terminal macOS.

Menginstal Dependensi

Install those packages or make sure you have them in your system.

Mengunduh Repositori

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.

Menyiapkan Lingkungan Build

  • Buka jendela Terminal.

  • 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 the pip command:

    sudo pip install -r requirements.txt
    

Catatan

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

sudo pip install -r requirements.txt --upgrade