2017-04-25 11:11:39 +00:00
|
|
|
Installation
|
|
|
|
------------
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2017-10-09 12:44:21 +00:00
|
|
|
The easiest way to install Soil is through pip, with Python >= 3.4:
|
2017-06-20 15:45:43 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
pip install soil
|
|
|
|
|
|
|
|
|
|
|
|
Now test that it worked by running the command line tool
|
2017-04-25 11:11:39 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
2017-06-20 15:45:43 +00:00
|
|
|
soil --help
|
|
|
|
|
2020-07-07 08:57:10 +00:00
|
|
|
Or, if you're using using soil programmatically:
|
2017-06-20 15:45:43 +00:00
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
import soil
|
|
|
|
print(soil.__version__)
|
|
|
|
|
2020-07-07 08:57:10 +00:00
|
|
|
The latest version can be installed through `GitLab <https://lab.gsi.upm.es/soil/soil.git>`_ or `GitHub <https://github.com/gsi-upm/soil>`_.
|