You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---------------
- Quick Start
- ---------------
-
- How to use
-
- .. contents:: Table of Contents
-
- Required packages
- -----------------
-
- This package requires the following packages:
-
- - Python version above 3.x
- - ``numpy`` http://www.numpy.org
-
- The easiest way to get these is to use
- `pip <https://pypi.python.org/pypi/pip>`__ or
- `conda <https://www.anaconda.com/what-is-anaconda/>`__ environment
- manager. Typing the following command in your terminal will install all
- required packages in your Python environment.
-
- .. code:: console
-
- $ conda install numpy
-
- or
-
- .. code:: console
-
- $ pip install numpy
-
- Getting and installing ABL
- ----------------------------
-
- The easiest way to install ABL is to type ``pip install ABL`` in you
- terminal/command line.
-
- If you want to install ABL by source code, download this project and
- sequentially run following commands in your terminal/command line.
-
- .. code:: console
-
- $ python setup.py build
- $ python setup.py install
-
- A quick example
- ---------------
-
- Show an example.
-
- More examples are available in the **Example** part.
|