summaryrefslogtreecommitdiffstats
path: root/documentation/toaster-manual/toaster-manual-start.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/toaster-manual/toaster-manual-start.rst')
-rw-r--r--documentation/toaster-manual/toaster-manual-start.rst27
1 files changed, 18 insertions, 9 deletions
diff --git a/documentation/toaster-manual/toaster-manual-start.rst b/documentation/toaster-manual/toaster-manual-start.rst
index 1114c04eab..2d612b8938 100644
--- a/documentation/toaster-manual/toaster-manual-start.rst
+++ b/documentation/toaster-manual/toaster-manual-start.rst
@@ -1,4 +1,6 @@
1.. SPDX-License-Identifier: CC-BY-2.0-UK 1.. SPDX-License-Identifier: CC-BY-2.0-UK
2.. Set default pygments highlighting to shell for this document
3.. highlight:: shell
2 4
3************************ 5************************
4Preparing to Use Toaster 6Preparing to Use Toaster
@@ -14,11 +16,11 @@ Setting Up the Basic System Requirements
14 16
15Before you can use Toaster, you need to first set up your build system 17Before you can use Toaster, you need to first set up your build system
16to run the Yocto Project. To do this, follow the instructions in the 18to run the Yocto Project. To do this, follow the instructions in the
17"`Preparing the Build 19":ref:`dev-manual/dev-manual-start:preparing the build host`" section of
18Host <&YOCTO_DOCS_DEV_URL;#dev-preparing-the-build-host>`__" section of
19the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might 20the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might
20also need to do an additional install of pip3. $ sudo apt-get install 21also need to do an additional install of pip3. ::
21python3-pip 22
23 $ sudo apt-get install python3-pip
22 24
23.. _toaster-establishing-toaster-system-dependencies: 25.. _toaster-establishing-toaster-system-dependencies:
24 26
@@ -39,10 +41,17 @@ Install Toaster Packages
39------------------------ 41------------------------
40 42
41You need to install the packages that Toaster requires. Use this 43You need to install the packages that Toaster requires. Use this
42command: $ pip3 install --user -r bitbake/toaster-requirements.txt The 44command::
43previous command installs the necessary Toaster modules into a local 45
46 $ pip3 install --user -r bitbake/toaster-requirements.txt
47
48The previous command installs the necessary Toaster modules into a local
44python 3 cache in your ``$HOME`` directory. The caches is actually 49python 3 cache in your ``$HOME`` directory. The caches is actually
45located in ``$HOME/.local``. To see what packages have been installed 50located in ``$HOME/.local``. To see what packages have been installed
46into your ``$HOME`` directory, do the following: $ pip3 list installed 51into your ``$HOME`` directory, do the following::
47--local If you need to remove something, the following works: $ pip3 52
48uninstall PackageNameToUninstall 53 $ pip3 list installed --local
54
55If you need to remove something, the following works::
56
57 $ pip3 uninstall PackageNameToUninstall