Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
17 changes: 13 additions & 4 deletions docs/01_introduction/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
<Tabs>
<TabItem value="PyPI" label="PyPI" default>
```bash
pip install apify-client
```
</TabItem>
<TabItem value="conda-forge" label="conda-forge">
```bash
conda install conda-forge::apify-client
```
</TabItem>
</Tabs>

## Quick example

Expand Down
Loading