@@ -62,11 +62,19 @@ content: |
62
62
The build tools require Python 3 and 2 *from Homebrew*. The version of Python
63
63
which comes with macOS is unsupported and will **not** work.
64
64
65
- Install Python by running:
65
+ Install Python 2 by running the following commmands :
66
66
67
67
.. code-block:: sh
68
68
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
+
70
78
71
79
---
72
80
@@ -78,7 +86,23 @@ content: |
78
86
79
87
.. code-block:: sh
80
88
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
82
106
83
107
---
84
108
@@ -103,8 +127,8 @@ content: |
103
127
104
128
.. code-block:: sh
105
129
106
- brew cask install xquartz
130
+ brew install --cask xquartz
107
131
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/>`__.
110
134
...
0 commit comments