Skip to content

Commit 28d040f

Browse files
authored
Add pip install tf-keras-nightly to DEVELOPMENT.md (tensorflow#6764)
Some graph-related tests still require keras 2 to be installed to work. DEVELOPMENT.md instructions are updated to include `pip install tf-keras-nightly`.
1 parent 5679181 commit 28d040f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DEVELOPMENT.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ TensorBoard at HEAD relies on the nightly installation of TensorFlow: this allow
1919
$ virtualenv -p python3 tf
2020
$ source tf/bin/activate
2121
(tf)$ pip install --upgrade pip
22-
(tf)$ pip install tf-nightly -r tensorboard/pip_package/requirements.txt -r tensorboard/pip_package/requirements_dev.txt
22+
(tf)$ pip install tf-nightly tf-keras-nightly -r tensorboard/pip_package/requirements.txt -r tensorboard/pip_package/requirements_dev.txt
23+
(tf)$ pip uninstall -y tb-nightly
2324
```
2425

2526
TensorBoard builds are done with [Bazel](https://bazel.build), so you may need to [install Bazel](https://docs.bazel.build/versions/master/install.html). The Bazel build will automatically "vulcanize" all the HTML files and generate a "binary" launcher script. When HTML is vulcanized, it means all the script tags and HTML imports are inlined into one big HTML file. Then the Bazel build puts that index.html file inside a static assets zip. The python HTTP server then reads static assets from that zip while serving.

0 commit comments

Comments
 (0)