Differences between revisions 17 and 18
Revision 17 as of 2023-03-27 09:04:19
Size: 2290
Editor: anonymous
Comment:
Revision 18 as of 2023-03-27 17:26:58
Size: 2290
Editor: anonymous
Comment:
No differences found!

  1. You may assume the python-graphvis package is available, what you get with

    $ pip install graphviz
  2. You may assume the rustcc stable build is available, what you get with

    $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    $ rustup install stable
    $ rustup default stable

    cargo will be available in the grader's PATH, you shouldn't need to know the location. To place it in your PATH, put a line like

    # rust
    . "$HOME/.cargo/env"

    at the bottom of your ~/.bashrc file. See the submission template section for submission templates.

  3. You may assume that .NET 7.0 SDK can be used, what you get with
    $ wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
    $ bash ./dotnet-install.sh --channel 7.0

    dotnet will be available in the grader's PATH, you shouldn't need to know the location. To place it in your PATH, put a line like

    # dotnet
    export PATH="${PATH}:${HOME}/.dotnet"

    at the bottom of your ~/.bashrc file. See the submission template section for submission templates.

  4. You may use the most recent stable version of Lua, what you get with

    $ curl -R -O http://www.lua.org/ftp/lua-X.Y.Z.tar.gz
    $ tar zxf lua-X.Y.Z.tar.gz
    $ cd lua-X.Y.Z
    $ make all test 
    $ make "INSTALL_TOP=${HOME}" install

    where X.Y.Z is the current (stable?) release; the current stable release is 5.4.4. lua will be available in the grader's PATH, you shouldn't need to know the location. The above instructions install lua into bin, lib directories of your ${HOME} (perhaps others as well). You may already have bin in your PATH, check with

    $ echo $PATH

    If your PATH is missing ~/bin, you can add it by putting a line like

    # lua
    export PATH="${PATH}:${HOME}/bin"

    at the bottom of your ~/.bashrc file. See the submission template section for submission templates.

LanguageExceptions (last edited 2024-03-24 18:53:15 by anonymous)