Sha256: df3cd00361321bc75abe00609f43e9f19b0d357a73f1cea4de942c668f9e0a3a
Contents?: true
Size: 387 Bytes
Versions: 7
Compression:
Stored size: 387 Bytes
Contents
module LearnOpen module DependencyInstallers class JupyterPipInstall < BaseInstaller def self.detect(lesson, location) File.exists?("#{lesson.to_path}/requirements.txt") end def run io.puts "Installing pip dependencies..." system_adapter.run_command("/opt/conda/bin/python -m pip install -r requirements.txt") end end end end
Version data entries
7 entries across 7 versions & 1 rubygems