From 4faf1e6dec78e98a31215cc6961e202cc593295a Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 2 Jan 2020 13:00:13 +0100 Subject: [PATCH] update pip install commands --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b13510..f15dd76 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Quick start: ```bash # install catcli with pip -sudo pip3 install catcli +pip3 install catcli --user # index a directory in the catalog catcli index -u --meta='some description' log /var/log # display the content @@ -80,7 +80,7 @@ See the [examples](#examples) for an overview of the available features. To install run: ```bash -$ sudo pip3 install catcli +$ pip3 install catcli --user ``` Or from github directly @@ -93,7 +93,7 @@ $ catcli --help To work with catcli without installing it, you can do the following ```bash $ cd /tmp; git clone https://github.com/deadc0de6/catcli && cd catcli -$ sudo pip3 install -r requirements.txt +$ pip3 install -r requirements.txt --user $ python3 -m catcli.catcli --help ```