Anaconda + Pytorch
Table of Contents
https://betterprogramming.pub/how-to-install-pytorch-on-apple-m1-series-512b3ad9bc6
Install Anaconda>
Install Anaconda #
- download from official site
- install
- Restart your terminal
Setup conda environment and install>
Setup conda environment and install #
Use pip pytorch official
$ conda create --name pytorch_m1 python=3.9
$ conda activate pytorch_m1
$ pip install torch torchvision torchaudio
$ conda install -c conda-forge jupyter jupyterlab
Test>