{"library":"pyg-nightly","title":"PyG Nightly (PyTorch Geometric Nightly)","description":"Nightly build of PyTorch Geometric (PyG), a library for graph neural networks built on PyTorch. Current version 2.8.0.dev20260501. It tracks the latest development, includes experimental features and unreleased fixes, and is updated daily. Requires Python >=3.10 and PyTorch.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install pyg-nightly","pip install pyg-nightly -f https://data.pyg.org/whl/torch-2.5.0+cu121.html"],"cli":null},"imports":["import torch_geometric"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import torch\nimport torch_geometric\nfrom torch_geometric.data import Data\n\nedge_index = torch.tensor([[0, 1, 1, 2],\n                           [1, 0, 2, 1]], dtype=torch.long)\nx = torch.tensor([[-1], [0], [1]], dtype=torch.float)\ndata = Data(x=x, edge_index=edge_index)\nprint(data)","lang":"python","description":"Create a simple graph with two edges.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}