Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Add Mac OS X Xcode instructions to the Readme. #101

Merged
merged 4 commits into from
Jun 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ npm install @tensorflow/tfjs-node-gpu
yarn add @tensorflow/tfjs-node-gpu
```

#### Mac OS X Requires Xcode

If you do not have Xcode setup on your machine, please run the following commands:

```sh
$ xcode-select --install
```

After that operation completes, re-run `yarn add` or `npm install` for the `@tensorflow/tfjs-node` package.

## Using the binding

Before executing any TensorFlow.js code, load and set the backend to 'tensorflow'.

```js
Expand Down