Rate This Document
Findability
Accuracy
Completeness
Readability

Installing TensorFlow 1.14.0

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Decompress the package.
    tar -zxvf v1.14.0.tar.gz
  3. Build .whl files for TensorFlow 1.14.0 and Python 3.7.
    cd tensorflow-1.14.0
    ./configure
    bazel build -j 4 //tensorflow/tools/pip_package:build_pip_package (It takes about 5 hours. Please wait.)
    ./bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
  4. Install the TensorFlow .whl file using pip.
    pip3 install /tmp/tensorflow_pkg/*.whl --user
  5. Perform the verification.
    pip3 list