From ea4dbcf1bfce8294ab4543c86fd93a40b2ac1f8d Mon Sep 17 00:00:00 2001 From: Dilawar Singh <dilawar@subcom.tech> Date: Thu, 29 Sep 2022 19:45:35 +0530 Subject: [PATCH] doc: fixes #1 --- README.md | 8 ++++---- bitia/checksumdir.py | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1522aeb..b39e80f 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ This is the cli utility of the BiTIA project. The other component is `bitia-runner`. Most users only need the cli client `bitia` to submit jobs. -Install it using pip. +Install it using `pip`. ``` -python3 -m pip install bitia -bitia --version +python -m pip install bitia --user +python -m bitia --help ``` ## BiTIA runner If you are self-hosting the BiTIA server, you need `bitia-runner` as well. See -the documents of `bitia-runner` for more details. +the documents of `bitia-runner` for more details. TODO. diff --git a/bitia/checksumdir.py b/bitia/checksumdir.py index 5f0f9ab..4dd5fed 100644 --- a/bitia/checksumdir.py +++ b/bitia/checksumdir.py @@ -7,7 +7,6 @@ dirhash('/path/to/directory', 'md5') Orignally from https://raw.githubusercontent.com/SubconsciousCompute/checksumdir/master/checksumdir/__init__.p y - """ import hashlib -- GitLab