Installation¶
The installation of McRadar is easy, and it follows the standard installation procedure of the Python packages.
Requirements¶
Installation at Linux OS¶
Installing dependencies¶
All of the required packages can be installed using pip. In case you do not have pip installed yet, you can find an installation description here.
$ pip install 'name of the required package'
Installing McRadar¶
You have two for acquiring the package. The first option is to download it from the McRadar repository, and the second option is to clone it using git. In case you do not have git installed, you can find the git installation guide here.
$ git clone https://github.com/jdiasn/McRadar.git
After the previous step, you should be able to execute the following command
$ python setup.py install
Installation at MacOS¶
Installing dependencies¶
All the dependencies can be installed using pip as described previously. However, the installation of PyTmatrix requires gfortran, and it can be installed using Homebrew. In case you do not have Homebrew installed, you can find an installation guide here.
# first step
$ brew cask install gfortran
# second step
$ pip install pytmatrix
Installing McRadar¶
It follows the same installation procedure described for Linux OS. After downloading or cloning the McRadar package, you only need to execute the following command
$ python setup.py install