From bef5aa80b39d23f4c48f0f66b0acf4a386140aa2 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 4 Jan 2018 18:25:54 +0100 Subject: [PATCH] docs: Install kas as user pip warns us with: "Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead." So update the documentation to install kas as user. Signed-off-by: Daniel Wagner --- docs/devguide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/devguide.rst b/docs/devguide.rst index c672c35..7294946 100644 --- a/docs/devguide.rst +++ b/docs/devguide.rst @@ -7,9 +7,9 @@ Deploy for development This project uses pip to manage the package. If you want to work on the project yourself you can create the necessary links via:: - $ sudo pip3 install -e . + $ pip3 install --user -e . -That will install a backlink /usr/bin/kas to this project. Now you are +That will install a backlink ~/.local/bin/kas to this project. Now you are able to call it from anywhere.