From a32d42263b0589199b5b2defd9d0a2b9a9cc4c07 Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Tue, 12 Feb 2019 13:56:26 +0100 Subject: [PATCH] describe the installation in more detail --- README | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README b/README index 0dbcf3f..4ccc04c 100644 --- a/README +++ b/README @@ -1,8 +1,20 @@ * Install Install in "development mode" so any change of the program is effective. -pip install -e . + +Note: For system wide (global) installation log in as root or use sudo for example. +For local (user) installation the local path must be in the PYTHONPATH environment variable. +Typically $HOME/.local/lib/pythonX.Y/site-packages + +' pip install -e . or -python -m pip install -e . +' pip install --user -e . +or +' python -m pip install -e . +or +' easy_install --prefix=$HOME/.local -e . +or +' pip install --install-option="--prefix-$HOME/.local" -e . + * Uninstall pip uninstall materials