최대 1 분 소요

Hits

Tensorflow Install 텐서플로우 설치

Anaconda activate


Conda Activate 가상 환경 활성화

conda activate 만든가상환경이름

Tensorflow Install

tensorflow-metal PluggableDevice (텐서플로우) Click

텐서플로우 설치

conda install -c conda-forge openblas
conda install -c apple tensorflow-deps
pip install tensorflow-macos
pip install tensorflow-metal
pip install tensorflow-macos --no-dependencies
pip install flatbuffers --no-dependencies


GPU Training (참고 자료) Click


Jupyter Notebook


주피터 노트북 사용

conda install jupyter
jupyter --version
jupyter notebook # 실행


jupyter-lab 을 실행하고 싶은데

AttributeError: 'ExtensionManager' object has no attribute '_extensions'

이런 에러가 나온다.
다운그레이드 했다.

pip install jupyter_server==1.6.4

Comments