From 6ea9bce41c5eafcdb916b9b0ef4ac5c184483b10 Mon Sep 17 00:00:00 2001 From: ml server Date: Fri, 7 Feb 2020 12:29:17 -0700 Subject: [PATCH] maybe do this in PyTorch --- docs/README-pytorch.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/README-pytorch.md diff --git a/docs/README-pytorch.md b/docs/README-pytorch.md new file mode 100644 index 0000000..44196b7 --- /dev/null +++ b/docs/README-pytorch.md @@ -0,0 +1,24 @@ +# Install Anaconda +Install the Anaconda package manager for Python. + +* https://www.anaconda.com/rpm-and-debian-repositories-for-miniconda/ + +``` +apt install gpg +curl https://repo.anaconda.com/pkgs/misc/gpgkeys/anaconda.asc | gpg --dearmor > conda.gpg +install -o root -g root -m 644 conda.gpg /etc/apt/trusted.gpg.d/ +``` + +## Add Anaconda Debian Repository +echo "deb [arch=amd64] https://repo.anaconda.com/pkgs/misc/debrepo/conda stable main" > /etc/apt/sources.list.d/conda.list + +apt update +apt install conda + +## Anaconda Usage +source /opt/conda/etc/profile.d/conda.sh +conda -V + + +# Install PyTorch +