From 307e446d43741d3c9db2432483f585da175ba3e4 Mon Sep 17 00:00:00 2001 From: Kaustubh Tangsali <71059996+ktangsali@users.noreply.github.com> Date: Tue, 2 May 2023 11:59:27 -0700 Subject: [PATCH] fix dgl install (#32) Co-authored-by: Kaustubh Tangsali --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c94b801716..e3d8c150d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,8 @@ FROM nvcr.io/nvidia/pytorch:$PYT_VER-py3 as builder RUN pip install --upgrade pip setuptools # Install nightly build of dgl -RUN pip install --pre dgl -f https://data.dgl.ai/wheels/cu117/repo.html -RUN pip install --pre dglgo -f https://data.dgl.ai/wheels-test/repo.html +RUN pip install --no-deps --pre dgl -f https://data.dgl.ai/wheels/cu117/repo.html +RUN pip install --no-deps --pre dglgo -f https://data.dgl.ai/wheels-test/repo.html ENV DGLBACKEND=pytorch ENV _CUDA_COMPAT_TIMEOUT=90 @@ -80,4 +80,4 @@ FROM deploy as docs # Install CI packages RUN pip install tensorflow>=2.11.0 warp-lang>=0.6.0 protobuf==3.20.0 # Install packages for Sphinx build -RUN pip install recommonmark==0.7.1 sphinx==5.1.1 sphinx-rtd-theme==1.0.0 pydocstyle==6.1.1 nbsphinx==0.8.9 nbconvert==6.4.3 jinja2==3.0.3 \ No newline at end of file +RUN pip install recommonmark==0.7.1 sphinx==5.1.1 sphinx-rtd-theme==1.0.0 pydocstyle==6.1.1 nbsphinx==0.8.9 nbconvert==6.4.3 jinja2==3.0.3