@@ -109,7 +109,7 @@ To list all available targets, you can append the `-T` flag:
109
109
* [ Python] ( https://www.python.org/ )
110
110
* ` python ` on the PATH
111
111
* [ The Requests Library] ( http://python-requests.org ) for Python: ` pip install requests `
112
- * MacOS users should have the latest version of XCode installed, including the command-line tools.
112
+ * MacOS users should have the latest version of Xcode installed, including the command-line tools.
113
113
The following command should work:
114
114
115
115
``` bash
@@ -271,26 +271,26 @@ brew uninstall bazel; \
271
271
brew install bazelbuild/tap/bazelisk
272
272
```
273
273
274
- #### XCode
274
+ #### Xcode
275
275
276
- If you're getting errors that mention XCode , you'll need to install the command-line tools.
276
+ If you're getting errors that mention Xcode , you'll need to install the command-line tools.
277
277
278
278
Bazel for Mac requires some additional steps to configure properly. First things first: use
279
279
the Bazelisk project (courtesy of philwo), a pure golang implementation of Bazel. In order to
280
- install Bazelisk, first verify that your XCode will cooperate: execute the following command:
280
+ install Bazelisk, first verify that your Xcode will cooperate: execute the following command:
281
281
282
282
` xcode-select -p `
283
283
284
284
If the value is ` /Applications/Xcode.app/Contents/Developer/ ` , you can proceed with bazelisk
285
285
installation. If, however, the return value is ` /Library/Developer/CommandLineTools/ ` , you'll
286
- need to redirect the XCode system to the correct value.
286
+ need to redirect the Xcode system to the correct value.
287
287
288
288
```
289
289
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/
290
290
sudo xcodebuild -license
291
291
```
292
292
293
- The first command will prompt you for a password. The second step requires you to read a new XCode
293
+ The first command will prompt you for a password. The second step requires you to read a new Xcode
294
294
license, and then accept it by typing "agree".
295
295
296
296
(Thanks to [ this thread] ( https://github.com/bazelbuild/bazel/issues/4314 ) for these steps)
0 commit comments