diff --git a/README.md b/README.md index afc1a6d4..8b2d9d63 100644 --- a/README.md +++ b/README.md @@ -32,19 +32,29 @@ ## Installation -`apify-client` requires **Python 3.11 or higher**. It is published on [PyPI](https://pypi.org/project/apify-client/) and can be installed for example with [pip](https://pip.pypa.io/): +`apify-client` requires **Python 3.11 or higher** and is published on [PyPI](https://pypi.org/project/apify-client/) and [conda-forge](https://anaconda.org/conda-forge/apify-client). -```bash -pip install apify-client -``` +- From [PyPI](https://pypi.org/project/apify-client/), it can be installed for example with [pip](https://pip.pypa.io/): -or with [uv](https://docs.astral.sh/uv/): + ```bash + pip install apify-client + ``` -```bash -uv add apify-client -``` + or with [uv](https://docs.astral.sh/uv/): + + ```bash + uv add apify-client + ``` + + or any other Python package manager that consumes PyPI. + + +- From [conda-forge](https://anaconda.org/conda-forge/apify-client), it can be installed with [conda](https://docs.conda.io/en/latest/): + + ```bash + conda install conda-forge::apify-client + ``` -or any other Python package manager that consumes PyPI. ## Quick start diff --git a/docs/01_introduction/index.mdx b/docs/01_introduction/index.mdx index 59a04977..2661b7a2 100644 --- a/docs/01_introduction/index.mdx +++ b/docs/01_introduction/index.mdx @@ -31,11 +31,20 @@ python --version ## Installation -The Apify client is available as the [`apify-client`](https://pypi.org/project/apify-client/) package on PyPI. +The Apify client is available as the `apify-client` package [on PyPI](https://pypi.org/project/apify-client/) or [on conda-forge](https://anaconda.org/conda-forge/apify-client). -```bash -pip install apify-client -``` + + + ```bash + pip install apify-client + ``` + + + ```bash + conda install conda-forge::apify-client + ``` + + ## Quick example