System install$ pip3 install --user --upgrade tensorflow # install in $HOMEVerify the install:$ python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))" Virtualenv install(venv) $ pip install --upgrade tensorflowVerify the install:(venv) $ python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))" https://www.tensorflow.org/insta..