Installation#

Stable release (PyPI)#

To install radarx via PyPI, run this command in your terminal:

$ python -m pip install radarx

This is the preferred method to install radarx, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

Create a Conda Environment (radar-env)#

First, create and activate a conda environment named radar-env:

$ conda create -n radar-env --yes
$ conda activate radar-env

Conda (via conda-forge)#

You can also install radarx using conda from the conda-forge channel:

$ conda install -c conda-forge radarx

This will install radarx and any dependencies via the conda package manager. For more information on installing conda, you can visit Conda’s installation guide.

From sources#

The sources for radarx can be downloaded from the GitHub repository.

You can either clone the public repository:

$ git clone git://github.com/syedhamidali/radarx

Or download the tarball:

$ curl -OJL https://github.com/syedhamidali/radarx/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install

Development version#

If you want to install the development version, you can clone the GitHub repository and install the development dependencies:

$ git clone git://github.com/syedhamidali/radarx
$ cd radarx
$ pip install -e .[dev]

This will install radarx in development mode, along with all dependencies required for contributing to the project, such as testing and linting tools.