파이썬 가상 환경 만들기 1. PIP 모듈 설치> pip install virtualenv virtualenvwrapper (* 윈도우는 virtualenvwrapper-win 설치> pip install virtualenv virtualenvwrapper-win) 사용mkvirtualenv : 가상 환경 생성deactivate : 가상 환경 종료rmvirtualenv : 가상 환경 삭제workon : 가상 환경 진입 개발/Python 2021.06.01
Tensorflow install System install$ pip3 install --user --upgrade tensorflow # install in $HOMEVerify the install:$ python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))" Virtualenv install(venv) $ pip install --upgrade tensorflowVerify the install:(venv) $ python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))" https://www.tensorflow.org/insta.. OS/Linux 2020.02.23