-
Notifications
You must be signed in to change notification settings - Fork 2
Prerequisites
Jim Burns edited this page Aug 27, 2015
·
4 revisions
This page lists the prerequisites to working with the Elbrys SDN Developer Lab. We have intentionally tried to minimize these requirements so that you can work with your SDN Developer Lab easily from virtually anywhere.
- A computer that meets the following requirements:
-
internet connection - if you are seeing this Wiki page you have this covered.
-
Python 2.7.x - a programming language. NOTE: you can use other languages in the future, but Python is the common language we use for demos and samples.
- Test if your system already has it, in a terminal window enter:
python --version
- If it is installed you should see a response like this (the last digit may be different):
Python 2.7.x- If it is not installed, then install it: https://wiki.python.org/moin/BeginnersGuide/Download
-
PIP - a Python package management tool for installing Python libraries and tools.
- Test if your system already has it, in a terminal enter:
pip --version
- If it is installed you should see a response similar to this (as long as it is not an error response):
pip 6.0.8 from /Library/Python/2.7/site-packages/pip-6.0.8-py2.7.egg (python 2.7)
- If it is not installed, then follow the install instructions here: https://pip.pypa.io/en/latest/installing.html
-
Git - a tool for getting sample source code.
- Test if your system already has it, in a terminal window enter:
git --version
- If it is installed you should see a response similar to this:
git version 1.9.5
- If it is not installed, then follow the install instructions here: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
-
VirtualBox - a virtual machine manager.
- If you do not have it installed, then follow the install instructions here: https://www.virtualbox.org/wiki/Downloads
-
- That is it. Now return to the Quick Start Guide to continue.