Building SDK code out of the box requires a number of tools. This section explains how to install the following tools:
Prerequisite | URL | Downloads -----— |
---|---|---|
Python 2.7 | https://www.python.org | python 2.7.12 installers |
SCons 2.4 | http://www.scons.org | scons-2.4.1.zip |
Parts 0.11 | https://bitbucket.org/sconsparts/parts/downloads | parts-0.11.1.zip |
To verify that Python installed correctly, run:
> python --version
After Python is installed, install SCons.
> python setup.py install
To verify that SCons installed correctly, run:
> scons --version
After SCons is installed, install Parts.
> python setup.py install
To verify that Parts installed correctly, run:
> python -c "import pkgutil; print 'Parts is installed' if 'parts' in [str(n) for _, n, _ in pkgutil.iter_modules()] else 'Parts module is not found'"