Python 安装gevent,在导入gevent之后就报错了

错误信息如下

RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144
got 128
  return f(*args, **kwds)

只需要执行一下下面这段代码就可以了

pip3 install -U --force-reinstall --no-binary :all: gevent

 

转载于:https://www.cnblogs.com/HByang/p/9471661.html

你可能感兴趣的:(python,c/c++,开发工具)