# Problem Installing htm.core in fedora

**URL:** https://discourse.numenta.org/t/problem-installing-htm-core-in-fedora/9148
**Category:** Engineering
**Created:** [November 11, 2021, 7:55pm UTC](https://discourse.numenta.org/t/problem-installing-htm-core-in-fedora/9148 "2021-11-11T19:55:05Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![surya001](https://avatars.discourse-cdn.com/v4/letter/s/919ad9/32.png) [@surya001](https://discourse.numenta.org/u/surya001)
#### Post date: [November 11, 2021, 7:55pm UTC](https://discourse.numenta.org/t/problem-installing-htm-core-in-fedora/9148/1 "2021-11-11T19:55:05Z")

</div>

Referring to the Readme file in [htm.core](https://github.com/htm-community/htm.core) repo. I see that the only prerequisite in Python 3.7+ version. I have Python 3.9 in my system.

However, when I try to install `htm.core` by

`python -m pip install -i https://test.pypi.org/simple/ htm.core` . I get this error message.  
`ERROR: Could not find a version that satisfies the requirement htm.core (from versions: none) ERROR: No matching distribution found for htm.core`

If anyone have stumbled upon similar issue or have any idea about sorting this issue. Please let me know.  
Thanks!

---

<div class="post-metadata">

### Author: ![David\_Keeney](https://yyz2.discourse-cdn.com/flex030/user_avatar/discourse.numenta.org/david_keeney/32/1616_2.png) [@David\_Keeney](https://discourse.numenta.org/u/David_Keeney)
#### Post date: [November 11, 2021, 11:46pm UTC](https://discourse.numenta.org/t/problem-installing-htm-core-in-fedora/9148/2 "2021-11-11T23:46:40Z")

</div>

Unfortunately there is only a limited set of binaries available for the combination of Python version and OS version. So if it cannot find a match on your environment then you will need to build from sources.

Download or clone the repository  
`git clone https://github.com/htm-community/htm.core`

Build with  
`python setup.py install --user --force`

as mentioned in the README the --user and --force may not be needed depending on your Python environment.

---

<div class="post-metadata">

### Author: ![surya001](https://avatars.discourse-cdn.com/v4/letter/s/919ad9/32.png) [@surya001](https://discourse.numenta.org/u/surya001)
#### Post date: [November 12, 2021, 2:12am UTC](https://discourse.numenta.org/t/problem-installing-htm-core-in-fedora/9148/3 "2021-11-12T02:12:18Z")

</div>

Thank you @David_Keeney .
