maybe do this in PyTorch

master
ml server 2020-02-07 12:29:17 -07:00
parent c3d3612da1
commit 6ea9bce41c
1 changed files with 24 additions and 0 deletions

View File

@ -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