1~5번 : 일반설치
6번 : 아나콘다 환경에서 설치
난 알못이라 둘다했음..ㅠㅠ
1. python3 설치
https://zetawiki.com/wiki/%EB%A7%A5OS_python3_%EC%84%A4%EC%B9%98
2. pip 설치
1
|
sudo easy_install pip
|
cs |
3. pip 버전 확인
1
|
pip -V
|
cs |
4. virtualenv 설치 (virtualenv : 파이썬이 독립된 가상 환경에서 작동되도록 하는 도구!)
1
2
3
4
5
|
# Python2의 경우
$ pip install virtualenv virtualenvwrapper
# Python3의 경우
$ pip3 install virtualenv virtualenvwrapper
|
cs |
https://potensj.tistory.com/73
1
|
python3 -m pip install --user virtualenv virtualenvwrapper
|
cs |
5. tensorflow 설치
1
|
pip install --upgrade tensorflow
|
cs |
5. tensorflow 버전 확인
1
2
|
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
|
cs |
6. tensorflow 아나콘다 환경에서 설치
https://lhh3520.tistory.com/370
'개발 > Tensorflow' 카테고리의 다른 글
[Tensorflow] Passing (type, 1) or '1type' as a synonym of type is deprecated (0) | 2019.08.12 |
---|