Skip to content

Commit d5248ac

Browse files
author
Cedric Van Labeke
committed
RST formatting update
1 parent d75c0e3 commit d5248ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,22 +56,22 @@ You can also find more thorough examples in the ``tests/`` directory.
5656
MacOS Notes
5757
===========
5858
MacOS ships with an old version of libarchive (/usr/lib/libarchive.dylib) and python-libarchive-c will by default try and use it.
59-
If you want to use python-libarchive-c on MacOS, you need to install a newer version of this lib. Homebrew can do this:
59+
If you want to use python-libarchive-c on MacOS, you need to install a newer version of this lib. Homebrew can do this::
6060

6161
$ brew install libarchive
6262

6363
This will install it in a path like /usr/local/Cellar/libarchive/3.3.3/lib/libarchive.13.dylib .
6464

65-
Once installed, set the environment variable LIBARCHIVE to this path:
65+
Once installed, set the environment variable LIBARCHIVE to this path::
6666

6767
export LIBARCHIVE=/usr/local/Cellar/libarchive/3.3.3/lib/libarchive.13.dylib
6868
python
6969

70-
or
70+
or alternatively inline with starting Python::
7171

7272
LIBARCHIVE=/usr/local/Cellar/libarchive/3.3.3/lib/libarchive.13.dylib python
7373

74-
or
74+
or inside the script itself::
7575

7676
python
7777
>>> import os

0 commit comments

Comments
 (0)