-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
166 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
.. highlight:: shell | ||
|
||
============ | ||
Installation | ||
============ | ||
|
||
|
||
|
||
Stable release | ||
-------------- | ||
|
||
Please install ``digitalearth`` in a Virtual environment so that its requirements don't tamper with your system's python. | ||
|
||
conda | ||
----- | ||
the easiest way to install ``digitalearth`` is using ``conda`` package manager. ``digitalearth`` is available in the | ||
`conda-forge <https://conda-forge.org/>`_ channel. To install | ||
you can use the following command: | ||
|
||
+ ``conda install -c conda-forge digitalearth`` | ||
|
||
If this works it will install Hapi with all dependencies including Python and gdal, | ||
and you skip the rest of the installation instructions. | ||
|
||
|
||
Installing Python and gdal dependencies | ||
--------------------------------------- | ||
|
||
The main dependencies for digitalearth are an installation of Python 3.9+, and gdal | ||
|
||
Installing Python | ||
----------------- | ||
|
||
For Python we recommend using the Anaconda Distribution for Python 3, which is available | ||
for download from https://www.anaconda.com/download/. The installer gives the option to | ||
add ``python`` to your ``PATH`` environment variable. We will assume in the instructions | ||
below that it is available in the path, such that ``python``, ``pip``, and ``conda`` are | ||
all available from the command line. | ||
|
||
Note that there is no hard requirement specifically for Anaconda's Python, but often it | ||
makes installation of required dependencies easier using the conda package manager. | ||
|
||
Install as a conda environment | ||
------------------------------ | ||
|
||
The easiest and most robust way to install Hapi is by installing it in a separate | ||
conda environment. In the root repository directory there is an ``environment.yml`` file. | ||
This file lists all dependencies. Either use the ``environment.yml`` file from the master branch | ||
(please note that the master branch can change rapidly and break functionality without warning), | ||
or from one of the releases {release}. | ||
|
||
Run this command to start installing all Hapi dependencies: | ||
|
||
+ ``conda env create -f environment.yml`` | ||
|
||
This creates a new environment with the name ``digitalearth``. To activate this environment in | ||
a session, run: | ||
|
||
+ ``conda activate digitalearth`` | ||
|
||
For the installation of Hapi there are two options (from the Python Package Index (PyPI) | ||
or from Github). To install a release of Hapi from the PyPI (available from release 2018.1): | ||
|
||
+ ``pip install digitalearth=={release}`` | ||
|
||
|
||
From sources | ||
------------ | ||
|
||
|
||
The sources for HapiSM can be downloaded from the `Github repo`_. | ||
|
||
You can either clone the public repository: | ||
|
||
.. code-block:: console | ||
$ git clone git://github.com/MAfarrag/digitalearth | ||
Or download the `tarball`_: | ||
|
||
.. code-block:: console | ||
$ curl -OJL https://github.com/MAfarrag/digitalearth/tarball/main | ||
Once you have a copy of the source, you can install it with: | ||
|
||
.. code-block:: console | ||
$ python setup.py install | ||
.. _Github repo: https://github.com/MAfarrag/digitalearth | ||
.. _tarball: https://github.com/MAfarrag/digitalearth/tarball/master | ||
|
||
|
||
To install directly from GitHub (from the HEAD of the master branch): | ||
|
||
+ ``pip install git+https://github.com/MAfarrag/digitalearth.git`` | ||
|
||
or from Github from a specific release: | ||
|
||
+ ``pip install git+https://github.com/MAfarrag/digitalearth.git@{release}`` | ||
|
||
Now you should be able to start this environment's Python with ``python``, try | ||
``import digitalearth`` to see if the package is installed. | ||
|
||
|
||
More details on how to work with conda environments can be found here: | ||
https://conda.io/docs/user-guide/tasks/manage-environments.html | ||
|
||
|
||
If you are planning to make changes and contribute to the development of Hapi, it is | ||
best to make a git clone of the repository, and do a editable install in the location | ||
of you clone. This will not move a copy to your Python installation directory, but | ||
instead create a link in your Python installation pointing to the folder you installed | ||
it from, such that any changes you make there are directly reflected in your install. | ||
|
||
+ ``git clone https://github.com/MAfarrag/digitalearth.git`` | ||
+ ``cd digitalearth`` | ||
+ ``activate digitalearth`` | ||
+ ``pip install -e .`` | ||
|
||
Alternatively, if you want to avoid using ``git`` and simply want to test the latest | ||
version from the ``master`` branch, you can replace the first line with downloading | ||
a zip archive from GitHub: https://github.com/MAfarrag/digitalearth/archive/master.zip | ||
`libraries.io <https://libraries.io/github/MAfarrag/digitalearth>`_. | ||
|
||
Install using pip | ||
----------------- | ||
|
||
Besides the recommended conda environment setup described above, you can also install | ||
Hapi with ``pip``. For the more difficult to install Python dependencies, it is best to | ||
use the conda package manager: | ||
|
||
+ ``conda install numpy scipy gdal netcdf4 pyproj`` | ||
|
||
|
||
you can check `libraries.io <https://libraries.io/github/MAfarrag/digitalearth>`_. to check versions of the libraries | ||
|
||
|
||
Then install a release {release} of digitalearth (available from release 2018.1) with pip: | ||
|
||
+ ``pip install digitalearth=={release}`` | ||
|
||
|
||
Check if the installation is successful | ||
--------------------------------------- | ||
|
||
To check it the install is successful, go to the examples directory and run the following command: | ||
|
||
+ ``python -m digitalearth.*******`` | ||
|
||
This should run without errors. | ||
|
||
|
||
.. note:: | ||
|
||
This documentation was generated on |today| | ||
|
||
Documentation for the development version: | ||
https://digitalearth.readthedocs.org/en/latest/ | ||
|
||
Documentation for the stable version: | ||
https://digitalearth.readthedocs.org/en/stable/ |