반응형
관련 docs: https://www.tensorflow.org/install/source?hl=ko#tested_build_configurations
>>conda create -n ccc python=3.7
Conda 환경 제작
-이름 : ccc
-python version: 3.7
가상화ccc를 활성화 하기 위해서는 다음 명령어 사용.
>> conda activate ccc
ccc환경을 활성화 하면, (ccc) 로 해당 환경에 활성화 되어 있음이 확인된다.
>>pip install tensorflow
<설치확인>
>>python
>>import tensorflow as tf
>>print(tf.__version__)
다음과 같이 tensorflow의 버전을 확인할 수 있다.
<관련글>
반응형
'HPC > Tensorflow' 카테고리의 다른 글
Conda : evironment.Yaml 파일 사용법 (0) | 2024.09.06 |
---|---|
Conda와 Tensorflow (0) | 2023.07.11 |