Skip to content
Snippets Groups Projects
Select Git revision
  • 9babc554c17cc98c3461d08ad9c37d4ca0ceb575
  • main default
2 results

julia-seminar

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Michele Nottoli authored
    9babc554
    History

    Julia-seminar

    Material for the Julia seminar course.

    Software and material

    What you need for the workshop (quick overview):

    • Julia 1.8
    • Jupyter and IJulia.jl
    • This repository of workshop materials
    • All required dependencies (Julia packages) for the workshop

    Getting Julia

    For following the course you will need at least Julia 1.8. Julia can be easily obtained in binary form from Julia downloads.

    Getting all the rest

    To get the remaining files and dependencies start up julia and in the resulting REPL shell, copy and paste the following:

    import Downloads
    script = Downloads.download("https://gitlab.mathematik.uni-stuttgart.de/stammbn/julia-seminar/-/raw/main/install.jl?ref_type=heads")
    include(script)

    This downloads the install.jl script and runs it from julia. Follow the instructions on the screen and start the Jupyter notebook server with the command that will be printed.

    As an alternative you can also also run the following commands manually (this requires to have git and julia available from the commandline):

    git clone https://github.com/mfherbst/2022-rwth-julia-workshop
    cd 2022-rwth-julia-workshop
    julia install-manual.jl

    Troubleshooting

    If you are facing issues, check out the great troubleshooting section from the WorkshopWizard package by Carsten Bauer (which install.jl is using).

    Check everything works

    There is a section in the 00_Installation notebook with a few quick commands to check everything works as expected. Please run these before the course.