@@ -62,11 +62,19 @@ content: |
6262 The build tools require Python 3 and 2 *from Homebrew*. The version of Python
6363 which comes with macOS is unsupported and will **not** work.
6464
65- Install Python by running:
65+ Install Python 2 by running the following commmands :
6666
6767 .. code-block:: sh
6868
69- brew install python https://raw.githubusercontent.com/Homebrew/homebrew-core/86a44a0a552c673a05f11018459c9f5faae3becc/Formula/[email protected] 69+ curl -LO https://raw.githubusercontent.com/Homebrew/homebrew-core/86a44a0a552c673a05f11018459c9f5faae3becc/Formula/[email protected] 70+
71+ 72+
73+ Install Python 3 by running the following command:
74+
75+ .. code-block:: sh
76+
77+ 7078
7179 ---
7280
@@ -78,7 +86,23 @@ content: |
7886
7987 .. code-block:: sh
8088
81- python2 -m pip install -r https://raw.githubusercontent.com/mongodb/docs-tools/master/giza/requirements.txt
89+ python -m pip install -r https://raw.githubusercontent.com/mongodb/docs-tools/master/giza/requirements.txt
90+
91+ You might receive the an error containing the following text when you
92+ try to install Giza, Sphinx, and their dependencies:
93+
94+ .. code-block:: sh
95+
96+ No module named pip
97+
98+ If you receive this error, run the following commands, then try to
99+ install Giza, Sphinx, and their dependencies again:
100+
101+ .. code-block:: sh
102+
103+ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
104+
105+ python get-pip.py
82106
83107 ---
84108
@@ -103,8 +127,8 @@ content: |
103127
104128 .. code-block:: sh
105129
106- brew cask install xquartz
130+ brew install --cask xquartz
107131
108- Once XQuartz is installed,
109- `download and install Inkscape <https://inkscape.org/release/inkscape-0.92.2 /mac-os-x/107/dmg /dl/>`__.
132+ Once XQuartz is installed, `download and install Inkscape
133+ <https://inkscape.org/release/inkscape-1.0.1 /mac-os-x/1010-1015 /dl/>`__.
110134 ...
0 commit comments