diff options
Diffstat (limited to 'documentation/toaster-manual/start.rst')
-rw-r--r-- | documentation/toaster-manual/start.rst | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/documentation/toaster-manual/start.rst b/documentation/toaster-manual/start.rst new file mode 100644 index 0000000000..8883374164 --- /dev/null +++ b/documentation/toaster-manual/start.rst | |||
@@ -0,0 +1,51 @@ | |||
1 | .. SPDX-License-Identifier: CC-BY-SA-2.0-UK | ||
2 | .. Set default pygments highlighting to shell for this document | ||
3 | .. highlight:: shell | ||
4 | |||
5 | ************************ | ||
6 | Preparing to Use Toaster | ||
7 | ************************ | ||
8 | |||
9 | This chapter describes how you need to prepare your system in order to | ||
10 | use Toaster. | ||
11 | |||
12 | Setting Up the Basic System Requirements | ||
13 | ======================================== | ||
14 | |||
15 | Before you can use Toaster, you need to first set up your build system | ||
16 | to run the Yocto Project. To do this, follow the instructions in the | ||
17 | ":ref:`dev-manual/dev-manual-start:preparing the build host`" section of | ||
18 | the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might | ||
19 | also need to do an additional install of pip3. :: | ||
20 | |||
21 | $ sudo apt-get install python3-pip | ||
22 | |||
23 | Establishing Toaster System Dependencies | ||
24 | ======================================== | ||
25 | |||
26 | Toaster requires extra Python dependencies in order to run. A Toaster | ||
27 | requirements file named ``toaster-requirements.txt`` defines the Python | ||
28 | dependencies. The requirements file is located in the ``bitbake`` | ||
29 | directory, which is located in the root directory of the | ||
30 | :term:`Source Directory` (e.g. | ||
31 | ``poky/bitbake/toaster-requirements.txt``). The dependencies appear in a | ||
32 | ``pip``, install-compatible format. | ||
33 | |||
34 | Install Toaster Packages | ||
35 | ------------------------ | ||
36 | |||
37 | You need to install the packages that Toaster requires. Use this | ||
38 | command:: | ||
39 | |||
40 | $ pip3 install --user -r bitbake/toaster-requirements.txt | ||
41 | |||
42 | The previous command installs the necessary Toaster modules into a local | ||
43 | python 3 cache in your ``$HOME`` directory. The caches is actually | ||
44 | located in ``$HOME/.local``. To see what packages have been installed | ||
45 | into your ``$HOME`` directory, do the following:: | ||
46 | |||
47 | $ pip3 list installed --local | ||
48 | |||
49 | If you need to remove something, the following works:: | ||
50 | |||
51 | $ pip3 uninstall PackageNameToUninstall | ||