Installing TensorFlow 1.14.0
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the package.
tar -zxvf v1.14.0.tar.gz
- 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
- Install the TensorFlow .whl file using pip.
pip3 install /tmp/tensorflow_pkg/*.whl --user
- Perform the verification.
pip3 list
Parent topic: Configuring the Compilation Environment