Created
February 2, 2017 08:51
-
-
Save hchs710623/07e4c3c98959bf0c57827d76e5bc4d54 to your computer and use it in GitHub Desktop.
Install ryu controller at ubuntu 14.04 desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get install git -y | |
sudo apt-get install python-setuptools python-pip -y | |
sudo apt-get install python-eventlet python-routes python-webob python-paramiko -y | |
sudo pip install tinyrpc ovs oslo.config msgpack-python eventlet enum34 | |
sudo pip install eventlet --upgrade | |
git clone git://github.com/osrg/ryu.git | |
cd ryu/; sudo python ./setup.py install | |
echo "\n" | |
echo "Finish! Install ryu controller!" | |
echo "Test ryu by running \"% ryu-manager\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment