docs/install: use `pip install --user` on *nix.
authorwhitequark <whitequark@whitequark.org>
Wed, 1 Jul 2020 05:06:20 +0000 (05:06 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 31 Dec 2021 14:28:29 +0000 (14:28 +0000)
docs/install.rst

index 230d4109379e55e684bd2ba3ba86e308e8f73bf3..a93ff2768aa2f8b14e4d28bdcf8da2ba41376e8a 100644 (file)
@@ -113,7 +113,7 @@ Latest release
 
       .. code-block:: console
 
-         $ pip install --upgrade nmigen[builtin-yosys]
+         $ pip install --user --upgrade nmigen[builtin-yosys]
 
    .. tab-container:: linux
       :title: Linux
@@ -122,13 +122,13 @@ Latest release
 
       .. code-block:: console
 
-         $ pip3 install --upgrade nmigen[builtin-yosys]
+         $ pip3 install --user --upgrade nmigen[builtin-yosys]
 
       If you **did** install Yosys manually in the previous step, run:
 
       .. code-block:: console
 
-         $ pip3 install --upgrade nmigen
+         $ pip3 install --user --upgrade nmigen
 
 
 .. _install-develop:
@@ -172,7 +172,7 @@ Development snapshot
 
          $ git clone https://gitlab.com/nmigen/nmigen
          $ cd nmigen
-         $ pip install --editable .[builtin-yosys]
+         $ pip install --user --editable .[builtin-yosys]
 
       |snapshot:update|
 
@@ -180,7 +180,7 @@ Development snapshot
 
          $ cd nmigen
          $ git pull --ff-only origin master
-         $ pip install --editable .[builtin-yosys]
+         $ pip install --user --editable .[builtin-yosys]
 
       |snapshot:reinstall|
 
@@ -195,7 +195,7 @@ Development snapshot
 
          $ git clone https://gitlab.com/nmigen/nmigen
          $ cd nmigen
-         $ pip3 install --editable .[builtin-yosys]
+         $ pip3 install --user --editable .[builtin-yosys]
 
       |snapshot:update|
 
@@ -203,7 +203,7 @@ Development snapshot
 
          $ cd nmigen
          $ git pull --ff-only origin master
-         $ pip3 install --editable .[builtin-yosys]
+         $ pip3 install --user --editable .[builtin-yosys]
 
       |snapshot:reinstall|