{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Getting Started" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The purpose of the present **Getting Started** section is to give a quick overview\n", "of the main objects and features of the LArray library.\n", "To get a more detailed presentation of all capabilities of LArray, read the next sections of the tutorial.\n", "\n", "The [API Reference](../api.rst#api-reference) section of the documentation give you the list of all objects, methods and functions with their individual documentation and examples.\n", "\n", "To use the LArray library, the first thing to do is to import it:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "nbsphinx": "hidden" }, "outputs": [], "source": [ "%xmode Minimal" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from larray import *" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To know the version of the LArray library installed on your machine, type:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from larray import __version__\n", "__version__" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "