Skip to content

Commit ecd8256

Browse files
authored
Add doc notes about using quote marks on Mac when installing optional et al (#1916)
1 parent 5394cb1 commit ecd8256

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/sphinx/source/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ First, install the ``doc`` dependencies specified in the
261261
`setup.py <https://github.com/pvlib/pvlib-python/blob/main/setup.py>`_.
262262
An easy way to do this is with::
263263

264-
pip install pvlib[doc]
264+
pip install pvlib[doc] # on Mac: pip install "pvlib[doc]"
265265

266266
Note: Anaconda users may have trouble using the above command to update an
267267
older version of docutils. If that happens, you can update it with ``conda``

docs/sphinx/source/user_guide/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ non-editable way, use one of the following commands to install pvlib-python::
7171

7272
# get pvlib and optional dependencies from the Python Package Index
7373
# another option if you know what you are doing
74-
pip install pvlib[optional]
74+
pip install pvlib[optional] # on Mac: pip install "pvlib[optional]"
7575

7676
.. note::
7777

@@ -239,7 +239,7 @@ The Anaconda distribution includes most of the above packages.
239239

240240
Alternatively, users may install all optional dependencies using
241241

242-
pip install pvlib[optional]
242+
pip install pvlib[optional] # on Mac: pip install "pvlib[optional]"
243243

244244

245245
.. _nrelspa:

0 commit comments

Comments
 (0)