Skip to content

Commit 307e446

Browse files
authored
fix dgl install (#32)
Co-authored-by: Kaustubh Tangsali <[email protected]>
1 parent 61dcc2b commit 307e446

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ FROM nvcr.io/nvidia/pytorch:$PYT_VER-py3 as builder
1919
RUN pip install --upgrade pip setuptools
2020

2121
# Install nightly build of dgl
22-
RUN pip install --pre dgl -f https://data.dgl.ai/wheels/cu117/repo.html
23-
RUN pip install --pre dglgo -f https://data.dgl.ai/wheels-test/repo.html
22+
RUN pip install --no-deps --pre dgl -f https://data.dgl.ai/wheels/cu117/repo.html
23+
RUN pip install --no-deps --pre dglgo -f https://data.dgl.ai/wheels-test/repo.html
2424
ENV DGLBACKEND=pytorch
2525

2626
ENV _CUDA_COMPAT_TIMEOUT=90
@@ -80,4 +80,4 @@ FROM deploy as docs
8080
# Install CI packages
8181
RUN pip install tensorflow>=2.11.0 warp-lang>=0.6.0 protobuf==3.20.0
8282
# Install packages for Sphinx build
83-
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
83+
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

0 commit comments

Comments
 (0)