【RYU】安装RYU常见问题及解决办法

目录

  • setuptools模块未安装
  • The 'webob>=1.2' distribution was not found and is required by ryu
  • The 'routes' distribution was not found and is required by ryu
  • The 'oslo.config>=1.2.0' distribution was not found and is required by ryu
  • lxml未安装:
  • six版本不足:
  • 如果出现The 'ovs' distribution was not found and is required by ryu错误
  • Stevedore
  • Debtcollector

setuptools模块未安装

curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_ setup.py|python

The ‘webob>=1.2’ distribution was not found and is required by ryu

sudo easy_ install webob==1.2.3

The ‘routes’ distribution was not found and is required by ryu

sudo easy_ install routes

The ‘oslo.config>=1.2.0’ distribution was not found and is required by ryu

sudo easy_ install oslo.config==3.0.0

lxml未安装:

apt-get install libxml2-dev libxslt1-dev python-dev
apt- get install python-lxml

six版本不足:

pip uninstall six
pip install six

如果出现The ‘ovs’ distribution was not found and is required by ryu错误

sudo pip install -r tools/ pip-requires

Stevedore

sudo pip install stevedore

Debtcollector

sudo pip install debtcollector

你可能感兴趣的:(SDN,python,开发语言)