摘要:
可以根据提示,先删除之前自动安装的upload库,再重新安装下就可以。 第一步:pip uninstall upload 第二步:根据提示执行: pip install requests_toolbelt filetype 或者 pip install "httprunner[upload]" 都可 阅读全文
摘要:
原因:那是因为参数化的库版本过高导致的 解决方法:可以卸载自动安装的pydantic库,再重新装低版本的,最后运行下就可以了。 第一步 pip uninstall pydantic 第二步 pip install pydantic==1.8.2 阅读全文