gigl.scripts.post_install#

Once GiGL is installed w/ pip install gigl, this script can be executed by running: gigl-post-install

This script is used to install the dependencies for GIGL. - Currently, it installs GLT by running install_glt.sh.

Functions#

main()

Main entry point for the post-install script.

run_command_and_stream_stdout(cmd)

Executes a command and streams the stdout output.

Module Contents#

gigl.scripts.post_install.main()[source]#

Main entry point for the post-install script.

gigl.scripts.post_install.run_command_and_stream_stdout(cmd)[source]#

Executes a command and streams the stdout output.

Parameters:

cmd (str) – The command to be executed.

Returns:

The return code of the command, or None if the command failed to execute.

Return type:

Optional[int]