본문 바로가기
IT/Tensorflow

Conda 환경 만들기 + Tensorflow 버전 확인

by ccclog 2023. 9. 8.
반응형

 

관련 docs: https://www.tensorflow.org/install/source?hl=ko#tested_build_configurations 

 

소스에서 빌드  |  TensorFlow

이 페이지는 Cloud Translation API를 통해 번역되었습니다. Switch to English 소스에서 빌드 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. 소스에서 TensorFlow pip 패키

www.tensorflow.org

 

>>conda create -n ccc python=3.7

Conda 환경 제작 

-이름 : ccc

-python version: 3.7

설치 완료시 출력되는 문구.

가상화ccc를 활성화 하기 위해서는 다음 명령어 사용. 

>> conda activate ccc

ccc환경을 활성화 하면, (ccc) 로 해당 환경에 활성화 되어 있음이 확인된다.

 

tensorflow설치.

>>pip install tensorflow

<설치확인>

>>python

>>import tensorflow as tf

>>print(tf.__version__)

 

 

다음과 같이 tensorflow의 버전을 확인할 수 있다. 

 

<관련글>

Conda와 Tensorflow

반응형

'IT > Tensorflow' 카테고리의 다른 글

Conda와 Tensorflow  (0) 2023.07.11