安装压测工具 : locustio
sudo python -m pip install locustio
error: could not create '/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/greenlet': Operation not permitted
总是报权限不足情况, 因为EI Captain引入了SIP管理机制,所以旧版本的pip创建的文件目录操作被拒绝,包括使用root也是如此
解决 : 加上 --user 就可以了
sudo python pip install locustio --user
网友评论