Could not find a version that satisfies the requirement tensorflow-addons<0.9,>=0.8 (from rasa) (from versions: )
No matching distribution found for tensorflow-addons<0.9,>=0.8 (from rasa)
在执行pip3 install rasa
时,我一直收到这个错误,我已经在Python3.8、3.7和3.6中尝试过了。
有什么建议吗?
发布于 2020-03-15 03:48:53
我怀疑你所有的Python都是32位的。TensorFlow和插件需要64位的Python。
检查Python的位数:
python -c "import struct; print(struct.calcsize('P') * 8)"
如果它们真的是32位的,请卸载它们,然后安装64位的Python。
https://stackoverflow.com/questions/60686573
复制相似问题