Skip to content

Commit 402f1d5

Browse files
authored
docs: Add installation from conda-forge to readme (#915)
1 parent d435618 commit 402f1d5

2 files changed

Lines changed: 32 additions & 13 deletions

File tree

README.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,29 @@
3232

3333
## Installation
3434

35-
`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/):
35+
`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).
3636

37-
```bash
38-
pip install apify-client
39-
```
37+
- From [PyPI](https://pypi.org/project/apify-client/), it can be installed for example with [pip](https://pip.pypa.io/):
4038

41-
or with [uv](https://docs.astral.sh/uv/):
39+
```bash
40+
pip install apify-client
41+
```
4242

43-
```bash
44-
uv add apify-client
45-
```
43+
or with [uv](https://docs.astral.sh/uv/):
44+
45+
```bash
46+
uv add apify-client
47+
```
48+
49+
or any other Python package manager that consumes PyPI.
50+
51+
52+
- From [conda-forge](https://anaconda.org/conda-forge/apify-client), it can be installed with [conda](https://docs.conda.io/en/latest/):
53+
54+
```bash
55+
conda install conda-forge::apify-client
56+
```
4657

47-
or any other Python package manager that consumes PyPI.
4858

4959
## Quick start
5060

docs/01_introduction/index.mdx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,20 @@ python --version
3131

3232
## Installation
3333

34-
The Apify client is available as the [`apify-client`](https://pypi.org/project/apify-client/) package on PyPI.
34+
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).
3535

36-
```bash
37-
pip install apify-client
38-
```
36+
<Tabs>
37+
<TabItem value="PyPI" label="PyPI" default>
38+
```bash
39+
pip install apify-client
40+
```
41+
</TabItem>
42+
<TabItem value="conda-forge" label="conda-forge">
43+
```bash
44+
conda install conda-forge::apify-client
45+
```
46+
</TabItem>
47+
</Tabs>
3948

4049
## Quick example
4150

0 commit comments

Comments
 (0)