blob: 2d612b893858ee54de776e99f0fcba4850c341ea [file] [log] [blame]
Andrew Geissler4873add2020-11-02 18:44:49 -06001.. SPDX-License-Identifier: CC-BY-2.0-UK
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002.. Set default pygments highlighting to shell for this document
3.. highlight:: shell
4
5************************
6Preparing to Use Toaster
7************************
8
9This chapter describes how you need to prepare your system in order to
10use Toaster.
11
12.. _toaster-setting-up-the-basic-system-requirements:
13
14Setting Up the Basic System Requirements
15========================================
16
17Before you can use Toaster, you need to first set up your build system
18to run the Yocto Project. To do this, follow the instructions in the
19":ref:`dev-manual/dev-manual-start:preparing the build host`" section of
20the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might
21also need to do an additional install of pip3. ::
22
23 $ sudo apt-get install python3-pip
24
25.. _toaster-establishing-toaster-system-dependencies:
26
27Establishing Toaster System Dependencies
28========================================
29
30Toaster requires extra Python dependencies in order to run. A Toaster
31requirements file named ``toaster-requirements.txt`` defines the Python
32dependencies. The requirements file is located in the ``bitbake``
33directory, which is located in the root directory of the
34:term:`Source Directory` (e.g.
35``poky/bitbake/toaster-requirements.txt``). The dependencies appear in a
36``pip``, install-compatible format.
37
38.. _toaster-load-packages:
39
40Install Toaster Packages
41------------------------
42
43You need to install the packages that Toaster requires. Use this
44command::
45
46 $ pip3 install --user -r bitbake/toaster-requirements.txt
47
48The previous command installs the necessary Toaster modules into a local
49python 3 cache in your ``$HOME`` directory. The caches is actually
50located in ``$HOME/.local``. To see what packages have been installed
51into your ``$HOME`` directory, do the following::
52
53 $ pip3 list installed --local
54
55If you need to remove something, the following works::
56
57 $ pip3 uninstall PackageNameToUninstall