mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 15:32:29 +00:00
e1be3a730e
* Pandas integration * Improved environment * Logging and data dumps * Tests * Added Finite State Machine models * Rewritten ipython notebook and documentation
25 lines
404 B
ReStructuredText
25 lines
404 B
ReStructuredText
Installation
|
|
------------
|
|
|
|
The easiest way to install Soil is through pip:
|
|
|
|
.. code:: bash
|
|
|
|
pip install soil
|
|
|
|
|
|
Now test that it worked by running the command line tool
|
|
|
|
.. code:: bash
|
|
|
|
soil --help
|
|
|
|
Or using soil programmatically:
|
|
|
|
.. code:: python
|
|
|
|
import soil
|
|
print(soil.__version__)
|
|
|
|
The latest version can be installed through `GitLab <https://lab.cluster.gsi.dit.upm.es/soil/soil.git>`_.
|