January 2019
Beginner to intermediate
776 pages
19h 58m
English
Install OPNFV in your computer by using the following script:
$ sh 22_1_quickstart.sh
Listing 13.1 is a script that invokes other commands to build and install OPNFV as follows:
#!/bin/bash ################################################## # Python Network Programming Cookbook, Second Edition -- Chapter - 13 ################################################## sudo apt-get update sudo apt-get install -y git # To offer the capability for sys-admins to restrict program capabilities # with per-program profiles. sudo apt-get install -y apparmor # Pyyaml is a required package for the configuration scripts. sudo pip2 install pyyaml # Cheetah is a required package for the templates and code generation. sudo pip2 install cheetah ...
Read now
Unlock full access