https://pytorch.org/get-started/locally/#macos-version
위 링크 참조.
난 graphical installer로 설치했다.
https://www.anaconda.com/download/#macos
pip3 install jupyter
로 설치하고,
Anaconda Navicator에서 Jupyter Notebook 아래 Launch를 누르니 웹 브라우저에서 잘 실행되는 것을 확인할 수 있었음.
요즘은 Tensorflow 보다 Pytorch를 더 많이 사용하는 추세라길래 Pytorch를 설치했음.
Pytorch 설치는,
conda install pytorch torchvision -c pytorch
이걸로 설치 함.
이후 잘 설치되었는지 확인하기 위해 위의 링크에서 나와있다시피
import torch
x = torch.rand(5, 3)
print(x)
를 주피터 노트북에서 실행하니,
tensor([[0.2193, 0.9677, 0.3952],
[0.3906, 0.4552, 0.9603],
[0.6493, 0.5530, 0.5691],
[0.6007, 0.4922, 0.6277],
[0.9624, 0.8437, 0.8007]])
이런 결과로 잘 나오는 것을 확인할 수 있었음.
+) matplotlib이 안 깔려 있어서 에러 나길래 아래 코드로 깔아줌.
conda install matplotlib