# Install Curator 7.0.0 in rhel

**URL:** https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223
**Category:** Elasticsearch
**Created:** [August 21, 2023, 10:30am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223 "2023-08-21T10:30:44Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![johnashish](https://avatars.discourse-cdn.com/v4/letter/j/6bbea6/32.png) [@johnashish](https://discuss.elastic.co/u/johnashish)
#### Post date: [August 21, 2023, 10:30am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/1 "2023-08-21T10:30:44Z")

</div>

As per official doc

```auto
https://www.elastic.co/guide/en/elasticsearch/client/curator/7.0/pip.html

```

Current system - RHEL 8  
Elasticsearch - 7.17.3

I am trying to install curator in linux machine and i have install python3  
so when i use this command i am getting this error -

```auto
 pip3 install elasticsearch-curator==7.0.0
Collecting elasticsearch-curator==7.0.0
  Could not find a version that satisfies the requirement elasticsearch-curator==7.0.0 (from versions: 0.6.0, 0.6.1, 0.6.2, 1.0.0, 1.1.0, 1.1.2, 1.1.3, 1.2.0, 1.2.1, 1.2.2, 2.0.0, 2.0.1, 2.0.2, 2.1.0, 2.1.1, 2.1.2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0, 3.2.0, 3.2.1, 3.2.2, 3.2.3, 3.3.0, 3.4.0, 3.4.1, 3.5.0, 3.5.1, 4.0.0, 4.0.1, 4.0.3, 4.0.4, 4.0.5, 4.0.6, 4.1.0, 4.1.1, 4.1.2, 4.2.0, 4.2.1, 4.2.3, 4.2.3.post1, 4.2.4, 4.2.5, 4.2.6, 4.3.0, 4.3.1, 5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.1.1, 5.1.2, 5.2.0, 5.3.0, 5.4.0, 5.4.1, 5.5.0, 5.5.1, 5.5.2, 5.5.3, 5.5.4, 5.6.0, 5.7.0, 5.7.2, 5.7.3, 5.7.4, 5.7.5, 5.7.6, 5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4)
No matching distribution found for elasticsearch-curator==7.0.0

```

---

<div class="post-metadata">

### Author: ![leandrojmp](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/leandrojmp/32/107231_2.png) [@leandrojmp](https://discuss.elastic.co/u/leandrojmp)
#### Post date: [August 21, 2023, 1:48pm UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/2 "2023-08-21T13:48:36Z")

</div>

> [@johnashish](#):
>
> I am trying to install curator in linux machine and i have install python3

What is your `python3` version? It [looks like](https://pypi.org/project/elasticsearch-curator/7.0.0/) that Curator 7.0.0 needs Python3 \>= 3.8.

---

<div class="post-metadata">

### Author: ![johnashish](https://avatars.discourse-cdn.com/v4/letter/j/6bbea6/32.png) [@johnashish](https://discuss.elastic.co/u/johnashish)
#### Post date: [August 21, 2023, 2:03pm UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/3 "2023-08-21T14:03:27Z")

</div>

python3 --version  
Python 3.6.8

---

<div class="post-metadata">

### Author: ![johnashish](https://avatars.discourse-cdn.com/v4/letter/j/6bbea6/32.png) [@johnashish](https://discuss.elastic.co/u/johnashish)
#### Post date: [August 23, 2023, 3:42am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/4 "2023-08-23T03:42:05Z")

</div>

@leandrojmp Any update?

---

<div class="post-metadata">

### Author: ![TimV](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/timv/32/13162_2.png) [@TimV](https://discuss.elastic.co/u/TimV)
#### Post date: [August 23, 2023, 6:50am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/5 "2023-08-23T06:50:46Z")

</div>

@leandrojmp already gave you the answer.

Curator 7.0.0 requires Python 3.8 or newer

> <https://github.com/elastic/curator/blob/v7.0.0/pyproject.toml#L13>

You have python 3.6.8 which is too old.

> ```auto
> python3 --version
> Python 3.6.8
> 
> ```

---

<div class="post-metadata">

### Author: ![johnashish](https://avatars.discourse-cdn.com/v4/letter/j/6bbea6/32.png) [@johnashish](https://discuss.elastic.co/u/johnashish)
#### Post date: [August 27, 2023, 8:12am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/6 "2023-08-27T08:12:51Z")

</div>

Yep thanks @leandrojmp @TimV  
Its working fine

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [September 24, 2023, 8:13am UTC](https://discuss.elastic.co/t/install-curator-7-0-0-in-rhel/341223/7 "2023-09-24T08:13:20Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
