找不到tensorflow == 1.4.1的匹配分布

问题描述 投票:0回答:2

我正在尝试安装Rasa Core,所以我安装了

pip install rasa_core

...然后我尝试安装开发依赖项:

pip install -r dev-requirements.txt
pip install -e 

...但我收到此错误:

(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))

我该如何解决这个错误?

python r python-2.7 tensorflow rasa-nlu
2个回答
1
投票

this question重复

快速回答 - 需要Python 64位

信用 - @rocket1037's answer


0
投票

尝试以下命令。

python -m pip install --upgrade

https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl

© www.soinside.com 2019 - 2024. All rights reserved.