From 2f4f57f3d1d38e2c7ca8fd2edc1da798dc36d425 Mon Sep 17 00:00:00 2001 From: Mustafa Baser Date: Fri, 1 Apr 2022 18:36:54 +0300 Subject: [PATCH] fix: jans cli update readme --- jans-cli/README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/jans-cli/README.md b/jans-cli/README.md index 35dce9562ea..6f0496b3778 100644 --- a/jans-cli/README.md +++ b/jans-cli/README.md @@ -70,17 +70,24 @@ python3 config-cli.pyz -h ### Standard Python package +1. Install venv module + ```sh + pip3 install virtualenv + ``` 1. Create virtual environment and activate: ```sh - python3 -m venv .venv + python3 -m virtualenv .venv source .venv/bin/activate ``` -1. Install the package: +1. Download and install the package: ``` + wget https://github.com/JanssenProject/jans/archive/refs/heads/main.zip + unzip main.zip + cd jans-main/jans-cli make install ```