Select a network by typing the number adjacent to the networks name then provide the password for
the network and you should be connected now and should see the message below.
With internet connection established, we should now Install the IoT DevKit Libraries
Type the command below in the terminal to add the DevKit Libraries
echo "src intel-iotdk http://iotdk.intel.com/repos/1.1/intelgalactic" > /etc/opkg/intel-iotdk.conf
We now need to update the package repository.Do this by typing
opkg update
Your terminal should appear as below after the above step
This should take a few minutes, once its done, your terminal should appear as below
Next, we need to add the unofficial package repository. Access to every package is not available without
adding repository locations to the opkg/base-feeds.conf file. By doing this, youll add an enormous
number of compiled applications, saving you the hassle of compiling from source. Unofficial repositories
are quite common across Linux, that is one of the beauties of Linux.
To edit the opkg/base-feeds.conf file to add the unofficial repository type the command below
echo "src/gz all http://repo.opkg.net/edison/repo/all
src/gz edison http://repo.opkg.net/edison/repo/edison
src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32" >> /etc/opkg/base-feeds.conf
Since we just added a new package location,we need to update the repository index again.Do this by
typing
opkg update
To test whether the NumPy and OpenCV packages were installed correctly, launch the python shell by
typing python.
Once the shell is launched, we are going to check if everything is shipshape by printing the NumPy and
OpenCV versions
To get the Numpy version type:
>> import numpy
>> print numpy.__version__
NB: Do not do a doing a blanket opkg upgrade with these unofficial repos. You'll max out the Edison's
memory in the process if you do, making your board very unstable and disabling the the virtual and USB
COM ports. If you do make that mistake, you will have to wirelessly flash a new image to the Edison and
lose all your config settings and packages (if you haven't backed them up already). DO NOT RUN opkg
upgrade WITH THE ABOVE REPO LINKED TO BASE-FEEDS.CONF