We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e1c42 commit fb69472Copy full SHA for fb69472
packages/torch.Dockerfile
@@ -42,7 +42,10 @@ RUN pip install /usr/local/src/pytorch/dist/*.whl
42
# Instructions: https://github.com/pytorch/audio#from-source
43
# See comment above for PYTORCH_BUILD_VERSION.
44
ENV BUILD_VERSION=$TORCHAUDIO_VERSION
45
-RUN cd /usr/local/src && \
+RUN sudo apt-get update && \
46
+ # ncurses.h is required for this install
47
+ sudo apt-get install libncurses-dev && \
48
+ cd /usr/local/src && \
49
git clone https://github.com/pytorch/audio && \
50
cd audio && \
51
git checkout tags/v$TORCHAUDIO_VERSION && \
0 commit comments