Created by: zeffii
resolves an import issue, files in sverchok.utils.*
don't become available as an attribute of sverchok.utils unless they are explicitly added to the __init__.py
module list.
Without this these pip function would need to be accessed this way
from sverchok.utils import pip_utils
pip_utils.install_package('numba')
now it can be run this way
from sverchok.utils.pip_utils import install_package
install_package('numba')