赞
踩
使用langchain时,import langchain时报错内容如下:
- pydantic.errors.PydanticUserError: If you use `@root_validator` with pre=False (the default) you MUST specify `skip_on_failure=True`. Note that `@root_validator` is deprecated and should be replaced with `@model_validator`.
-
- For further information visit https://errors.pydantic.dev/2.4/u/root-validator-pre-skip
环境为:
python 3.7
langchain 0.0.27
这个问题最主要的问题是pydantic的版本问题,由报错内容“For further information ...”也可以了解到,最终将pydantic库的版本降低到1.10.13,pydantic_core等相关依赖库的版本也会自动降低,出现此问题的根本就是pydantic的版本问题,与python版本等并无直接关系。使用如下代码安装即可:
pip install pydantic==1.10.13 -i https://pypi.douban.com/simple
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。