Skip to content

Commit 879dec4

Browse files
committed
add --pre option to installation with pip
1 parent 8389690 commit 879dec4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Have questions or want to discuss your ideas? Join our Slack community to connec
3333
Install PyC and its dependencies:
3434

3535
```bash
36-
pip install pytorch-concepts
36+
pip install --pre pytorch-concepts
3737
```
3838

3939
For development, you may want to install in editable mode:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The name of the library stands for both
2929
You can install <img src="https://raw.githubusercontent.com/pyc-team/pytorch_concepts/refs/heads/master/doc/_static/img/logos/pyc.svg" width="20px"> PyC with core dependencies from [PyPI](https://pypi.org/project/pytorch-concepts/):
3030

3131
```bash
32-
pip install pytorch-concepts
32+
pip install --pre pytorch-concepts
3333
```
3434

3535
After installation, you can import it in your Python scripts as:

doc/guides/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Install PyC and its dependencies:
4242

4343
.. code-block:: bash
4444
45-
pip install pytorch-concepts
45+
pip install --pre pytorch-concepts
4646
4747
For development, you may want to install in editable mode:
4848

doc/guides/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can install PyC with core dependencies from `PyPI <https://pypi.org/project/
88

99
.. code-block:: bash
1010
11-
pip install pytorch-concepts
11+
pip install --pre pytorch-concepts
1212
1313
This will install the core library without data-related dependencies (opencv-python, pgmpy, bnlearn, pandas, torchvision, datasets, transformers).
1414

@@ -19,7 +19,7 @@ If you plan to use the ``torch_concepts.data`` module, install with the data ext
1919

2020
.. code-block:: bash
2121
22-
pip install pytorch-concepts[data]
22+
pip install --pre pytorch-concepts[data]
2323
2424
This will install all dependencies including those required for data loading and preprocessing.
2525

0 commit comments

Comments
 (0)