Skip to content
Snippets Groups Projects
Select Git revision
  • 94d2d966f028be62f8fb08aba99c69c695771d19
  • main default
2 results

install.jl

Blame
  • user avatar
    Michele Nottoli authored
    94d2d966
    History
    install.jl 625 B
    using Pkg
    Pkg.add(url="https://github.com/carstenbauer/WorkshopWizard.jl/")
    using WorkshopWizard
    
    if Sys.iswindows()
        path = joinpath(homedir(), "Desktop")
    else
        path = homedir()
    end
    success = WorkshopWizard.install(;repo="https://gitlab.mathematik.uni-stuttgart.de/stammbn/julia-seminar",
                                      path,
                                      global_IJulia=true,
                                      auto_overwrite=false)
    
    if success
        @info "That's it. Start the notebook server with 'using IJulia; notebook(dir=\"$path/https://gitlab.mathematik.uni-stuttgart.de/stammbn/julia-seminar\")' ..."
    end