From fc5f96de8ce14e44479276b9ed34700ff88d785c Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 13 Nov 2024 18:19:51 +0100 Subject: [PATCH] use/install: Remove --user It has not been needed for a while, and fails when a venv is active. --- use/install.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/use/install.rst b/use/install.rst index f9c92d9..81499e8 100644 --- a/use/install.rst +++ b/use/install.rst @@ -97,12 +97,11 @@ Local installation (without root access) If you have followed the previous section, skip this one. -Simply add ``--user`` to the end of both commands. First we install -requirements (you can skip it, but some features won't be available) +First we install requirements (you can skip it, but some features won't be available) and then Limnoria itself.:: - python3 -m pip install -r https://raw.githubusercontent.com/progval/Limnoria/master/requirements.txt --user --upgrade - python3 -m pip install limnoria --user --upgrade + python3 -m pip install -r https://raw.githubusercontent.com/progval/Limnoria/master/requirements.txt --upgrade + python3 -m pip install limnoria --upgrade You might need to add $HOME/.local/bin to your PATH.::