Registry / ai-ml / pyg-nightly

pyg-nightly

JSON →
library2.9.0.dev20260619pypypiunverified

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.

pip install pyg-nightly
INSTALL
IMPORT
SIG · PYG-NIGHTLY
P
pyg-nightly
ai-mlpythonv2.9.0.dev20260619
Install
9.1s avg
Import
Disk
121MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v2.9.0.dev20260619 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.910 runs
installs and imports cleanly · install 0.0s · import 0.000s · 118.1MB
glibc
py 3.103.910 runs
installs and imports cleanly · install 9.1s · import 0.000s · 116MB
121MB installed
● package 121MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

torch_geometric
import torch_geometric
import torch_geometric

Create a simple graph with two edges.

import torch import torch_geometric from torch_geometric.data import Data edge_index = torch.tensor([[0, 1, 1, 2], [1, 0, 2, 1]], dtype=torch.long) x = torch.tensor([[-1], [0], [1]], dtype=torch.float) data = Data(x=x, edge_index=edge_index) print(data)
Debug
Known issues
breakingNightly builds may introduce API-breaking changes without notice. Code that works with stable PyG may break with pyg-nightly.
fix
Pin to a specific nightly version if reproducibility is required, or use the stable release.
affects: all nightly
gotchaImport as `import torch_geometric`, not `import pyg`. The pip package name is different from the import name.
fix
Use `import torch_geometric`.
affects: all
deprecatedSome modules like `torch_geometric.nn.dense` are deprecated in favor of newer modules.
fix
Consult the changelog and migrate to the recommended replacements.
affects: >=2.8.0.dev
Upgrade
Version history
2.9.0.dev20260619latest on PyPI · released Jun 19, 2026
Audit
Dependencies
torchrequiredCore dependency; PyG requires PyTorch.
Agent activity
19 hits · last 30 days
node
12
OpenAI (training)
1
Resources