Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 5

...

Code Block
pip install --upgrade virtualenv
virtualenv --system-site-packages ~/venvs/tensorflow
source ~/venvs/tensorflow/bin/activate
pip install --upgrade numpy scipy wheel cryptography #optional
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-10.1210.0rc0-cp35-cp35m-linux_x86_64.whl
If you face an error like below when you run the end of line above
Code Block
tensorflow-10.1210.0rc0-cp35-cp35m-linux_x86_64.whl is not a supported wheel on this platform.

...

Code Block
python -m pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-10.125.0-cp27-none-linux_x86_64.whl

...

Reference: https://gist.github.com/87170360/0d445ae4100c2686067ee56901b42f9b

STEP 4. Upgrade Tensorflow in latest version

...