问题类型:
某某distribution was not found
问题说明:
在运行ryu-manager的时候错误提示:the‘webob>=1.2’distribution was not found
找了好久都没有找到相关问题的解决办法,我想可能这个问题大家貌似都不怎么遇到吧,然后找来找去困扰了好久。
最后在python安装包网页中看到相关参考https://pypi.python.org/pypi/WebOb/1.2.3,里面有这样一句话:You may install the in-development version of WebOb with pip install WebOb==dev (or easy_install WebOb==dev).
我想dev是不是 soft development软件升级的版本号呢,于是我试了以下指令
sudo easy_install webob==1.2.3
然后……这个错误提示就没有了!!!
之后继续运行ryu-manager又有错误提示:the 'oslo.config<=3.0.0,>=1.6.0' distribution was not found
如法炮制
sudo easy_install oslo.config==3.0.0
然后,运行正常!!!