일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kafka
- 파이썬
- licence delete curl
- API
- sort
- high level client
- License
- springboot
- Test
- TensorFlow
- flask
- query
- token filter test
- aggs
- 900gle
- MySQL
- matplotlib
- Elasticsearch
- zip 파일 암호화
- license delete
- plugin
- analyzer test
- Python
- 차트
- Mac
- Java
- zip 암호화
- ELASTIC
- aggregation
- docker
Archives
- Today
- Total
개발잡부
아나콘다 tensorflow 설치 본문
반응형
아나콘다 설치 후
가상환경 목록확인
conda info --envs
가상환경 생성
conda create --name "doo" python="3.7"
shell 껏다 키고
가상환경 실행
conda activate doo
텐서플로우 설치
conda install tensorflow
주피터 노트북 설치
conda install jupyter notebook
주피터 노트북 실행
jupyter notebook
텐서플로 확인
import tensorflow as tf
with tf.compat.v1.Session() as sess:
hello = tf.constant("Hello")
world = tf.constant("World")
sentence = hello + world
pr = sess.run(sentence)
print(pr)
반응형
'Python > system' 카테고리의 다른 글
[anaconda] 아나콘다 설치 (0) | 2021.12.24 |
---|---|
[anaconda] Uninstalling Anaconda (0) | 2021.12.22 |
Comments