Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install instructions #563

Merged
merged 1 commit into from
Oct 18, 2024
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
15 changes: 8 additions & 7 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ Caution: The TensorFlow Java API is *not* covered by the TensorFlow

## Requirements

TensorFlow Java runs on Java 8 and above, and supports out-of-the-box the
TensorFlow Java runs on Java 11 and above, and supports out-of-the-box the
following platforms:

* Ubuntu 16.04 or higher; 64-bit, x86
* macOS 10.12.6 (Sierra) or higher; 64-bit, x86
* Windows 7 or higher; 64-bit, x86
* Ubuntu 20.04 or higher; 64-bit, x86
* Ubuntu 22.04 or higher; 64-bit, arm
* macOS 12 or higher; 64-bit, x86
* macOS 14 or higher; 64-bit, arm
* Windows 10 or higher; 64-bit, x86

*Note: To use TensorFlow on Android, see
[TensorFlow Lite](https://tensorflow.org/lite)*
Expand All @@ -41,8 +43,7 @@ TensorFlow Java to your project. The easiest one is to add a dependency on the
Core API and the native dependencies it requires to run on all supported
platforms.

You can also select the `tensorflow-core-platform-gpu` extension instead, which
supports CUDA® on Linux and Windows platforms.
To include CUDA® support for Linux x86, select the `tensorflow-core-native:linux-x86_64-gpu` artifact.

In addition, a separate dependency on the `tensorflow-framework` library can be
added to benefit from a rich set of utilities for TensorFlow-based machine
Expand Down Expand Up @@ -118,7 +119,7 @@ repositories {
}

dependencies {
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc.1'
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc.2'
}
```

Expand Down
Loading