[Release] DGL 1.0: Empowering Graph Machine Learning For Everyone

We are thrilled to announce the arrival of DGL 1.0, a cutting-edge machine learning framework for deep learning on graphs. Over the past three years, there has been growing interest from both academia and industry in this technology. Our framework has received requests from various scenarios, from academic research on state-of-the-art models to industrial demands for scaling Graph Neural Network (GNN) solutions to large, real-world problems. With DGL 1.0, we aim to provide a comprehensive and user-friendly solution for all users to take advantage of graph machine learning.


This is a companion discussion topic for the original entry at https://www.dgl.ai/release/2023/02/20/release.html
3 Likes

Hi, I’m trying to download the cuda distribution of DGL 1 from the following:
https://data.dgl.ai/wheels/cu113/repo.html

Specifically, I’m trying to download dgl-1.0.1+cu113-cp38-cp38-manylinux1_x86_64.whl.
However, it’s giving me an access denied error. Can someone help with this?

This XML file does not appear to have any style information associated with it. The document tree is shown below.

<Error>

<Code>AccessDenied</Code>

<Message>Access Denied</Message>

<RequestId>2A62QXDC7B2FZXNF</RequestId>

<HostId>H80Re+qc/rLF7axdCSF+XNb/yCeR+xQegV8ZIm//N0ZbghilHUt0ORGtg4jMrABi1vXJHiQ4euw=</HostId>

</Error>

Thanks for reporting, it seems that the url on the webpage is poorly encoded. More specifically, the “+” in the following url should be replaced by %2B, we are fixing the webpage now.

Current:
https://data.dgl.ai/wheels/cu113/dgl-1.0.1+cu113-cp38-cp38-manylinux1_x86_64.whl

Correct:
https://data.dgl.ai/wheels/cu113/dgl-1.0.1%2Bcu113-cp38-cp38-manylinux1_x86_64.whl

1 Like