Skip to content

Instantly share code, notes, and snippets.

@faroit
Created July 26, 2019 20:18
Show Gist options
  • Save faroit/10fbddb0e9de42d130b3327a37c3a869 to your computer and use it in GitHub Desktop.
Save faroit/10fbddb0e9de42d130b3327a37c3a869 to your computer and use it in GitHub Desktop.
torchaudio installation using using only conda
FROM continuumio/miniconda3
RUN apt-get update
RUN apt-get install -y gcc build-essential g++
RUN conda install -c conda-forge sox
RUN conda install -c pytorch pytorch
RUN git clone https://github.com/pytorch/audio.git
RUN cd audio && python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment