https://www.tensorflow.org/install/pip?hl=ko
$ sudo apt-get update
$ sudo apt upgrade
python 3.9에서는 tensorflow 2.3.1을 설치할 수 없다.
따라서 python3.7을 사용하는 가상환경을 만들면 된다.
$ conda create -n tf231 python=3.7
$ conda activate tf231
그 후 pip를 upgrade 해준다.
$ pip install --upgrade pip
$ pip install --upgrade tensorflow==2.3.1