Skip to content

Commit 2c9b436

Browse files
author
Thierry RAMORASOAVINA
committed
Stop using alternate package indexes or channels since the release to the official ones
As khiops-python library is released to PyPI and conda-forge, promote these official sources and use them
1 parent 4b0ad8a commit 2c9b436

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,16 @@ in two ways:
1313

1414
## Installation
1515

16+
Using `conda`
1617
```bash
17-
conda install -c conda-forge -c khiops khiops
18+
conda install khiops
19+
```
20+
21+
Using `pip`
22+
```shell
23+
python -m venv khiops-venv
24+
. khiops-venv/bin/activate
25+
pip install khiops
1826
```
1927
Other install methods are documented at the [Khiops website][khiops-install].
2028

doc/index.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ Khiops is better installed with `conda package manager <https://docs.conda.io/en
1010

1111
.. code-block:: shell
1212
13-
conda install -c conda-forge -c khiops khiops
13+
conda install khiops
14+
15+
Alternatively, you can install in a virtual environment using `pip`
16+
17+
.. code-block:: shell
18+
19+
python -m venv khiops-venv
20+
. khiops-venv/bin/activate
21+
pip install khiops
1422
1523
More details and other install methods are documented at the `Khiops website
1624
<https://www.khiops.org/setup>`_.

packaging/docker/khiopspydev/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ RUN true \
6767
# khiops core \
6868
$CONDA install -y -n py${version}_conda ${RC_LABEL}khiops-core=$(echo ${KHIOPS_REVISION} | tr -d "-") ; \
6969
# remote files drivers installed in the conda environment \
70-
$CONDA install -y -n py${version}_conda -c khiops \
70+
$CONDA install -y -n py${version}_conda \
7171
khiops-driver-s3=${KHIOPS_S3_DRIVER_REVISION} \
7272
khiops-driver-gcs=${KHIOPS_GCS_DRIVER_REVISION}; \
7373
done' \

0 commit comments

Comments
 (0)