From a73c4405812863599a0700dc8454116d6d623452 Mon Sep 17 00:00:00 2001 From: TitanE Date: Wed, 17 Jan 2024 11:46:45 +0300 Subject: [PATCH] Adding dependencies to README + changing steps --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 85095ff..5719a3a 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,11 @@ Instead of asymmetric encryption with public and private keys, all that needs to ## Installation Guide +### Dependencies + +`python` >= v3 +`sqlite` >= v3 + ### Linux/MacOS/Windows 1. Open the Terminal (Linux/MacOS) or Command Prompt (Windows) @@ -35,6 +40,8 @@ Instead of asymmetric encryption with public and private keys, all that needs to 3. Change the current working directory to the 'keyvault' directory `cd keyvault/` -4. Execute the Python script -`python3 keyvault.py` (Linux/MacOS) -`python keyvault.py` (Windows) +4. Install the dependencies +`pip install -r files/dependencies.txt` + +5. Execute the Python script +`python3 keyvault.py`