conda create -n 계정명 python=버젼
<aside> 💡 계정명 주의 py36t13_test : 파이썬3.6, 텐서플로우 1.3
</aside>
conda create -n p36t13_test python=3.6
pip install tensorflow==1.3
python 들어가서
import tensorflow as tf
tf.__version__
다시 베이스로 나갈 때
conda deactivate
conda create -n p37t20_test python=3.7
Tensorflow 2.0 설치 - p37t20_test 활성화 뒤에 설치해야 함
pip install tensorflow==2.0