Machine Learning Based HandWritten-Calculator
- 가상환경 세팅
python -m venv [가상환경 이름]
source [가상환경이름]/Scripts/activate
- Django 설치
pip install django
- TensorFlow 패키지
pip install --upgrade tensorflow
- Tensorflow 설치 확인
python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"