diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-14 15:21:12 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-14 15:21:12 +0300 |
commit | 6c7c10adfb301214b64c698d2874828c7a809361 (patch) | |
tree | 9db9aaefad5c7426720675b1904ebf4c3fcd870a | |
parent | 3f5da0dfb74e90fa016e20fc48cd5911cfd6627d (diff) | |
download | UEFI-Lessons-6c7c10adfb301214b64c698d2874828c7a809361.tar.gz UEFI-Lessons-6c7c10adfb301214b64c698d2874828c7a809361.tar.bz2 UEFI-Lessons-6c7c10adfb301214b64c698d2874828c7a809361.zip |
Add 'python3-distutils' to the prerequested packages
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
-rw-r--r-- | Lessons/Lesson_00/README.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lessons/Lesson_00/README.md b/Lessons/Lesson_00/README.md index a45b5ae..3c94e9a 100644 --- a/Lessons/Lesson_00/README.md +++ b/Lessons/Lesson_00/README.md @@ -10,6 +10,11 @@ This is how you install these packages in Ubuntu: $ sudo apt-get install -y nasm iasl uuid-dev python3 ``` +Also it might be necessary to install `python3-distutils` package: +``` +$ sudo apt-get install -y python3-distutils +``` + Then it is necessary to clone edk2 repo and update all its submodules: ``` $ git clone https://github.com/tianocore/edk2 |