Skip to content

Commit adbc947

Browse files
committed
docs/install: use pip install --user on *nix.
1 parent 78c027f commit adbc947

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/install.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Latest release
113113

114114
.. code-block:: console
115115
116-
$ pip install --upgrade nmigen[builtin-yosys]
116+
$ pip install --user --upgrade nmigen[builtin-yosys]
117117
118118
.. tab-container:: linux
119119
:title: Linux
@@ -122,13 +122,13 @@ Latest release
122122

123123
.. code-block:: console
124124
125-
$ pip3 install --upgrade nmigen[builtin-yosys]
125+
$ pip3 install --user --upgrade nmigen[builtin-yosys]
126126
127127
If you **did** install Yosys manually in the previous step, run:
128128

129129
.. code-block:: console
130130
131-
$ pip3 install --upgrade nmigen
131+
$ pip3 install --user --upgrade nmigen
132132
133133
134134
.. _install-develop:
@@ -172,15 +172,15 @@ Development snapshot
172172
173173
$ git clone https://github.com/nmigen/nmigen
174174
$ cd nmigen
175-
$ pip install --editable .[builtin-yosys]
175+
$ pip install --user --editable .[builtin-yosys]
176176
177177
|snapshot:update|
178178

179179
.. code-block:: console
180180
181181
$ cd nmigen
182182
$ git pull --ff-only origin master
183-
$ pip install --editable .[builtin-yosys]
183+
$ pip install --user --editable .[builtin-yosys]
184184
185185
|snapshot:reinstall|
186186

@@ -195,15 +195,15 @@ Development snapshot
195195
196196
$ git clone https://github.com/nmigen/nmigen
197197
$ cd nmigen
198-
$ pip3 install --editable .[builtin-yosys]
198+
$ pip3 install --user --editable .[builtin-yosys]
199199
200200
|snapshot:update|
201201

202202
.. code-block:: console
203203
204204
$ cd nmigen
205205
$ git pull --ff-only origin master
206-
$ pip3 install --editable .[builtin-yosys]
206+
$ pip3 install --user --editable .[builtin-yosys]
207207
208208
|snapshot:reinstall|
209209

0 commit comments

Comments
 (0)