Skip to content

Commit 18bec0d

Browse files
authored
Merge pull request #222 from jhlegarreta/sty/rst-code-block-terminal-sign
STY: Miscellaneous reStructuredText literal block cleanup
2 parents 7bc5660 + 9bbfc2a commit 18bec0d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/developers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Please, do not commit manually to ``gh-pages``.
1717

1818
To build the documentation locally, you first need to make sure that ``setuptools_scm[toml] >= 6.2`` is installed in your environment and then::
1919

20-
$ cd <nifreeze-repository>/
21-
$ python -m setuptools_scm # This will generate ``src/nifreeze/_version.py``
22-
$ make -C docs/ html
20+
cd <nifreeze-repository>/
21+
python -m setuptools_scm # This will generate ``src/nifreeze/_version.py``
22+
make -C docs/ html
2323

2424
Library API (application program interface)
2525
-------------------------------------------

docs/installation.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ Installation
66
Make sure all of *nifreeze*' `External Dependencies`_ are installed.
77

88
On a functional Python 3.10 (or above) environment with ``pip`` installed,
9-
*nifreeze* can be installed using the habitual command ::
9+
*nifreeze* can be installed using the usual `pip install` command::
1010

11-
$ python -m pip install nifreeze
11+
python -m pip install nifreeze
1212

13-
Check your installation with the following command line ::
13+
Check your installation with the following command line::
1414

15-
$ python -c "from nifreeze import __version__; print(__version__)"
15+
python -c "from nifreeze import __version__; print(__version__)"
1616

1717

1818
External Dependencies
1919
---------------------
2020
*nifreeze* requires ANTs_, which is leveraged through the Nipype_ Python
2121
interface for registration purposes. There are
2222
`several ways to install ANTs <https://github.com/ANTsX/ANTs?tab=readme-ov-file#installation>`__.
23-
Notably, the path to the installed binaries needs to be added to the ``PATH`` ::
23+
Notably, the path to the installed binaries needs to be added to the ``PATH``::
2424

25-
$ export PATH=/path/to/ants/bin:$PATH
25+
export PATH=/path/to/ants/bin:$PATH

0 commit comments

Comments
 (0)