Installing Tensorflow¶
- Open Terminal
- conda info --envs
- Creating Environment -> conda create --name py3-TF2.0 python=3
- Proceed([y]/n)? -> y , then Enter
- Activating the Environment -> conda activate py3-TF2.0
- conda install tensorflow
- Proceed([y]/n)? -> y , then Enter
- Upgrading tensorflow version -> pip insatll --upgrade tensorflow
- IPython kernel for Jupyter -> pip install ipykernel
- Open Jupyter Notebook -> Checking if tensorflow is installed
import tensorflow as tf
print(tf.__version__)