From 7e53eff6d0d465e47f152c4b5e2b2e6f746114d2 Mon Sep 17 00:00:00 2001 From: Ze'ev Schurmann Date: Fri, 28 Feb 2025 00:31:20 +0200 Subject: [PATCH] Add Installing --- Installing.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Installing.md diff --git a/Installing.md b/Installing.md new file mode 100644 index 0000000..3230fe2 --- /dev/null +++ b/Installing.md @@ -0,0 +1,24 @@ +Use GIT to clone this repo or download the latest Version ZIP file from Releases and unzip to your PC. + +It is important that you have Python3.11 and Pip installed. + +In the folder you unzipped to, create an environment + +## On Windows +``` +python -m venv venv +source venv\Scripts\activate +pip install . +``` + +## On Linux/MacOS +``` +python -m venv venv +source venv/bin/activate +pip install . +``` + +## Run the app +``` +ink-calc +``` \ No newline at end of file