tokenizers>=0.11.1,!=0.11.3,<0.13 is required for a normal functioning of this module,

原因:tokenizer的版本有两个,原先安装了0.5.0(低版本)的版本,后来安装了0.12.1(高版本)的版本,但是由于某种原因,没有卸载0.5.0的版本
解决办法

  1. 连续两次运行,先删了高版本的,然后第二次删低版本的
pip uninstall tokenizers
  1. 再运行,安装0.12.1版本即可
pip install tokenizers

你可能感兴趣的:(python,环境安装,python)