class Jumpstarter::Pip::InstallPIP

Public Instance Methods

crash_on_error!() click to toggle source
# File lib/jumpstarter_core/pip.rb, line 35
def crash_on_error!()
    return false
end
run!() click to toggle source
# File lib/jumpstarter_core/pip.rb, line 26
def run!()
    # install pip
    CommandRunner.execute(
            command: Commands::Pip::Install,
            error: nil
    )
    return true
end