File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -1579,6 +1579,9 @@ in ``recipe/conda_build_config.yaml`` in their respective feedstocks.
1579
1579
Installing a pre-release build
1580
1580
------------------------------
1581
1581
1582
+ Using the ` conda` CLI
1583
+ ^^^^^^^^^^^^^^^^^^^^^
1584
+
1582
1585
Use the following command, but replace ` ` PACKAGE_NAME` ` with the package you want
1583
1586
to install and replace ` ` LABEL` ` with ` ` rc` ` or ` ` dev` ` :
1584
1587
@@ -1592,6 +1595,27 @@ For example, let's install matplotlib from the ``rc`` label:
1592
1595
1593
1596
conda install -c conda-forge/label/matplotlib_rc -c conda-forge matplotlib
1594
1597
1598
+ Using `environment.yml`
1599
+ ^^^^^^^^^^^^^^^^^^^^^^^
1600
+
1601
+ Use `MatchSpec
1602
+ <https://github.com/conda/conda/blob/c3fb8150ed4c3dabb7ca376ade208095f98ee0b9/conda/models/match_spec.py#L70-L150>`__
1603
+ to specify your package:
1604
+
1605
+ .. code-block:: yaml
1606
+
1607
+ dependencies:
1608
+ - conda-forge/label/matplotlib_rc::matplotlib=3.7.0rc1
1609
+
1610
+ Alternately, you can use the channels section to enable the `matplotlib_rc` channel:
1611
+
1612
+ .. code-block:: yaml
1613
+
1614
+ channels:
1615
+ - conda-forge/label/matplotlib_rc
1616
+ dependencies:
1617
+ - matplotlib=3.7.0.rc1
1618
+
1595
1619
Pre-release version sorting
1596
1620
---------------------------
1597
1621
You can’t perform that action at this time.
0 commit comments