I'm trying to install Rasa Core so I installed
pip install rasa_core
...and then I tried to install the development dependencies:
pip install -r dev-requirements.txt
pip install -e
...but I get this error:
(base) C:\Users\\\rasa_core>pip install -r requirements.txt
Collecting apscheduler==3.5.0 (from -r requirements.txt (line 2))
Using cached APScheduler-3.5.0-py2.py3-none-any.whl
Collecting fakeredis==0.9.0 (from -r requirements.txt (line 3))
Using cached fakeredis-0.9.0-py2.py3-none-any.whl
Collecting future==0.16.0 (from -r requirements.txt (line 4))
Collecting graphviz==0.7.1 (from -r requirements.txt (line 5))
Using cached graphviz-0.7.1-py2.py3-none-any.whl
Collecting h5py==2.7.0 (from -r requirements.txt (line 6))
Downloading h5py-2.7.0-cp36-cp36m-win_amd64.whl (1.9MB)
100% |████████████████████████████████| 1.9MB 3.9MB/s
Collecting jsonpickle==0.9.4 (from -r requirements.txt (line 7))
Using cached jsonpickle-0.9.4.tar.gz
Collecting keras==2.0.8 (from -r requirements.txt (line 8))
Using cached Keras-2.0.8-py2.py3-none-any.whl
Requirement already satisfied: numpy==1.14.0 in f:\anaconda\lib\site-packages (from -r requirements.txt (line 9))
Collecting pandoc==1.0.0b2 (from -r requirements.txt (line 10))
Using cached pandoc-1.0.0b2.tar.gz
Collecting redis==2.10.5 (from -r requirements.txt (line 11))
Using cached redis-2.10.5-py2.py3-none-any.whl
Requirement already satisfied: six==1.11.0 in f:\anaconda\lib\site-packages (from -r requirements.txt (line 12))
Collecting tensorflow==1.4.1 (from -r requirements.txt (line 13))
Could not find a version that satisfies the requirement tensorflow==1.4.1 (from -r requirements.txt (line 13)) (from versions: 1.2.0rc2, 1.2.0, 1.2.1, 1.3.0rc0, 1.3.0rc1, 1.3.0rc2, 1.3.0, 1.4.0rc0, 1.4.0rc1, 1.4.0, 1.5.0rc0, 1.5.0rc1, 1.5.0, 1.6.0rc0, 1.6.0rc1, 1.6.0)
No matching distribution found for tensorflow==1.4.1 (from -r requirements.txt (line 13))
How can I fix this error?