how can i know which tensorflow version i have conda code example
Example 1: check tensorflow version
import tensorflow as tf
tf.__version__
Example 2: install tensorflow anaconda 1
conda install -c conda-forge tensorflow=1.14
import tensorflow as tf
tf.__version__
conda install -c conda-forge tensorflow=1.14