docs/install: quote special chars to avoid issues with extended glob.
This commit is contained in:
parent
f50303ca7c
commit
43da4e3f0a
|
@ -113,7 +113,7 @@ Latest release
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip install --user --upgrade nmigen[builtin-yosys]
|
$ pip install --user --upgrade 'nmigen[builtin-yosys]'
|
||||||
|
|
||||||
.. tab-container:: linux
|
.. tab-container:: linux
|
||||||
:title: Linux
|
:title: Linux
|
||||||
|
@ -122,7 +122,7 @@ Latest release
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip3 install --user --upgrade nmigen[builtin-yosys]
|
$ pip3 install --user --upgrade 'nmigen[builtin-yosys]'
|
||||||
|
|
||||||
If you **did** install Yosys manually in the previous step, run:
|
If you **did** install Yosys manually in the previous step, run:
|
||||||
|
|
||||||
|
@ -156,7 +156,7 @@ Development snapshot
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip install --user git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]
|
$ pip install --user 'git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]'
|
||||||
|
|
||||||
.. tab-container:: linux
|
.. tab-container:: linux
|
||||||
:title: Linux
|
:title: Linux
|
||||||
|
@ -165,13 +165,13 @@ Development snapshot
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip3 install --user git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]
|
$ pip3 install --user 'git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]'
|
||||||
|
|
||||||
If you **did** install Yosys manually in the previous step, run:
|
If you **did** install Yosys manually in the previous step, run:
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip3 install --user git+https://github.com/nmigen/nmigen.git#egg=nmigen
|
$ pip3 install --user 'git+https://github.com/nmigen/nmigen.git#egg=nmigen'
|
||||||
|
|
||||||
|
|
||||||
.. _install-develop:
|
.. _install-develop:
|
||||||
|
@ -215,7 +215,7 @@ Editable development snapshot
|
||||||
|
|
||||||
$ git clone https://github.com/nmigen/nmigen
|
$ git clone https://github.com/nmigen/nmigen
|
||||||
$ cd nmigen
|
$ cd nmigen
|
||||||
$ pip install --user --editable .[builtin-yosys]
|
$ pip install --user --editable '.[builtin-yosys]'
|
||||||
|
|
||||||
|develop:update|
|
|develop:update|
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ Editable development snapshot
|
||||||
|
|
||||||
$ cd nmigen
|
$ cd nmigen
|
||||||
$ git pull --ff-only origin master
|
$ git pull --ff-only origin master
|
||||||
$ pip install --user --editable .[builtin-yosys]
|
$ pip install --user --editable '.[builtin-yosys]'
|
||||||
|
|
||||||
|develop:reinstall|
|
|develop:reinstall|
|
||||||
|
|
||||||
|
@ -238,7 +238,7 @@ Editable development snapshot
|
||||||
|
|
||||||
$ git clone https://github.com/nmigen/nmigen
|
$ git clone https://github.com/nmigen/nmigen
|
||||||
$ cd nmigen
|
$ cd nmigen
|
||||||
$ pip3 install --user --editable .[builtin-yosys]
|
$ pip3 install --user --editable '.[builtin-yosys]'
|
||||||
|
|
||||||
|develop:update|
|
|develop:update|
|
||||||
|
|
||||||
|
@ -246,7 +246,7 @@ Editable development snapshot
|
||||||
|
|
||||||
$ cd nmigen
|
$ cd nmigen
|
||||||
$ git pull --ff-only origin master
|
$ git pull --ff-only origin master
|
||||||
$ pip3 install --user --editable .[builtin-yosys]
|
$ pip3 install --user --editable '.[builtin-yosys]'
|
||||||
|
|
||||||
|develop:reinstall|
|
|develop:reinstall|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue