From c979eb7fd29b431ec9cfc0518dcff5a4a4c8d7f5 Mon Sep 17 00:00:00 2001 From: Miguel Sousa Date: Tue, 14 May 2024 12:06:41 -0700 Subject: [PATCH] Update installation instructions Make sure the commands don't have leading spaces --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0e39ee83d..3421a91ef 100644 --- a/README.md +++ b/README.md @@ -71,21 +71,29 @@ Note for Linux users (and users of other platforms that are not macOS or Windows - Create a virtual environment: - python -m venv afdko_env + ```sh + python -m venv afdko_env + ``` - Activate the virtual environment: - macOS & Linux - source afdko_env/bin/activate + ```sh + source afdko_env/bin/activate + ``` - Windows - afdko_env\Scripts\activate.bat + ```sh + afdko_env\Scripts\activate.bat + ``` - Install [afdko](https://pypi.python.org/pypi/afdko): - python -m pip install afdko + ```sh + python -m pip install afdko + ``` Installing the **afdko** inside a virtual environment prevents conflicts between its dependencies and other modules installed globally.