Tambahkan TensorFlow ke Conda

conda create -n tf tensorflow  #Create a Virtual environment(tf).
conda activate tf              #Activate the Virtualenv environment
pip install tensorflow         #install TensorFlow in it.
SAAD JAMAL-EDDINE