File tree Expand file tree Collapse file tree 2 files changed +25
-12
lines changed
Expand file tree Collapse file tree 2 files changed +25
-12
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,6 @@ from source.
3535For the most up-to-date information on installing * f* VDB's pip packages, please see the
3636[ installation documentation] ( https://fvdb.ai/installation.html ) .
3737
38- ### Nightly Builds
39-
40- Nightly wheels built from the latest ` main ` branch are published to a custom pip index.
41- To install the latest nightly build:
42-
43- ``` shell
44- pip install --pre fvdb-core --extra-index-url https://fvdb-packages.s3.us-east-2.amazonaws.com/simple-nightly/
45- ```
46-
47- Nightly builds use a synthetic version (e.g. ` 0.0.0.dev20260224+pt28.cu128 ` ) and require ` --pre ` .
48- The ` +pt28.cu128 ` suffix identifies the PyTorch and CUDA versions the wheel was built against.
49- Upgrading to a stable release later works naturally with ` pip install --upgrade fvdb-core ` .
5038
5139## Building * f* VDB from Source
5240
Original file line number Diff line number Diff line change @@ -42,6 +42,31 @@ PyTorch 2.8.0 + CUDA 12.8
4242
4343
4444
45+ Installation from nightly builds
46+ -------------------------------------
47+
48+ Nightly wheels are built from the latest ``main `` branch and published daily.
49+ The nightly version includes a date stamp and PyTorch/CUDA build identifiers
50+ (e.g. ``0.0.0.dev20260224+pt28.cu128 ``).
51+
52+ PyTorch 2.8.0 + CUDA 12.8
53+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
54+
55+ .. code-block :: bash
56+
57+ pip install fvdb-core==0.0.0.dev20260224+pt28.cu128 --extra-index-url=" https://d36m13axqqhiit.cloudfront.net/simple-nightly" torch==2.8.0 --extra-index-url https://download.pytorch.org/whl/cu128
58+
59+ To list all available nightly versions:
60+
61+ .. code-block :: bash
62+
63+ pip index versions fvdb-core --index-url=" https://d36m13axqqhiit.cloudfront.net/simple-nightly" --pre
64+
65+ .. note ::
66+
67+ Replace ``20260224 `` with the desired nightly date. Nightly builds are retained for 30 days.
68+
69+
4570Installation from source
4671-----------------------------
4772
You can’t perform that action at this time.
0 commit comments