Skip to content
Merged
Changes from 1 commit
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
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,28 @@

## 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 it is published on [PyPI](https://pypi.org/project/apify-client/) and on [conda-forge](https://anaconda.org/channels/conda-forge/packages/apify-client/overview)
Comment thread
Copilot marked this conversation as resolved.
Outdated

```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/channels/conda-forge/packages/apify-client/overview), it can be installed with [conda](https://docs.conda.io/en/latest/):
Comment thread
Pijukatel marked this conversation as resolved.
Outdated
```bash
conda install conda-forge::apify-client
```

or any other Python package manager that consumes PyPI.

## Quick start

Expand Down
Loading