requires Python ‘>=3.7‘ but the running Python is 3.6.9 问题

目录

过程

  • ubuntu18.04 使用如下命令安装protobuf

 pip3 install protobuf
  • 安装完毕后报错

protobuf requires Python '>=3.7' but the running Python is 3.6.9

解决

  • 更新pip

python3 -m pip install --upgrade pip
  • 再次安装之前安装的module

pip3 install protobuf
  • 不再报错

文章出处登录后可见!

已经登录?立即刷新

共计人评分,平均

到目前为止还没有投票!成为第一位评论此文章。

(0)
青葱年少的头像青葱年少普通用户
上一篇 2023年9月2日
下一篇 2023年9月2日

相关推荐