安装rasa-x过程中提示ERROR: Could not build wheels for ujson, which is required to install pyproject.toml-based projects怎么处理
时间: 2023-10-26 18:41:50 浏览: 146
rasa-train-test-gha:GitHub动作,可在CI中轻松运行rasa train和rasa test
这个错误通常是由于缺少ujson依赖或者ujson依赖版本不兼容所引起的。可以尝试以下几种方法解决:
1. 升级pip和setuptools:运行命令`pip install --upgrade pip setuptools`
2. 安装ujson依赖:运行命令`pip install ujson`
3. 如果上面的方法都不行,可以尝试升级ujson的版本:运行命令`pip install --upgrade ujson`
如果以上方法仍然无法解决问题,可以尝试在安装rasa-x之前先安装ujson依赖,具体方法是运行命令`pip install ujson`,然后再安装rasa-x。
阅读全文