From 400df308b3dd9c051c1aa6d133e0f56bce571224 Mon Sep 17 00:00:00 2001 From: Alexey Ayzin Date: Wed, 1 Apr 2026 08:40:08 -0400 Subject: [PATCH] Fix: Added missing manual requirements in pip install in Linux installation documentation --- Installing-Oppia-(Linux;-Python-3).md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Installing-Oppia-(Linux;-Python-3).md b/Installing-Oppia-(Linux;-Python-3).md index 04a60d2f..4597b3ff 100644 --- a/Installing-Oppia-(Linux;-Python-3).md +++ b/Installing-Oppia-(Linux;-Python-3).md @@ -202,13 +202,14 @@ exec "$SHELL" 9. Install the Python dependencies: ```console - $ pip install pyyaml setuptools + $ pip install pyyaml setuptools psutil certifi packaging rcssmin xmltodict Requirement already satisfied: setuptools in /home/user/.pyenv/versions/2.7.18/envs/oppia-tmp/lib/python2.7/site-packages (44.1.1) Collecting pyyaml Downloading PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl (574 kB) |████████████████████████████████| 574 kB 2.3 MB/s Installing collected packages: pyyaml Successfully installed pyyaml-5.4.1 + ... ``` Note that you don't need to install pyyaml if you were able to install python-yaml with your package manager earlier.