Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用此处的说明安装 RASA
我创建了一个虚拟环境并执行了 pip install rasa。但下面是多个依赖项不兼容的错误消息。我是否单独安装错误消息中的所有指定版本?
我发现很多人有安装问题,并尽力在论坛中找到解决方案,但无法解决。
错误消息 - 依赖项列表
看起来您正在尝试在之前分别安装 rasa-nlu 和 rasa-core 的环境中安装 Rasa1.x(Rasa 1.x 之前)。这些是旧版本,您不能与 post-1.x Rasa 混合使用。我建议创建一个新的虚拟环境,确保它处于活动状态,检查是否未安装rasa-nlu或rasa-core已安装,然后运行pip install -U rasa或pip install -U rasa==<rasa version that you want>是否需要特定版本。
rasa-nlu
rasa-core
pip install -U rasa
pip install -U rasa==<rasa version that you want>