From 93c7d4f7608ee8a0f62ad59ce374e1e9e842efb0 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Thu, 8 Feb 2018 11:54:32 -0300 Subject: [PATCH] Added README.md --- README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9c7bee4 --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +# Moulder + +An open-source interactive forward 2D gravity modeller. + +Written in Python, using PyQt5 as GUI library and +[Fatiando a Terra](www.fatiando.org) under the hood for gravity forward +modelling. + +## Cloning the repo + +In order to start using `Moulder` you need to clone this repo: + +``` +git clone https://www.github.com/fatiando/moulder +``` + +## Install dependencies + +Download [Anaconda](https://www.anaconda.com/download/) (Python 2.7 version). + +Install a `C` compiler, such as `gcc`. +Under Debian or Ubuntu based disto: + +``` +sudo apt-get install gcc +``` + +Then change the working directory to the cloned repo: + +``` +cd moulder +``` +and create a `conda` environment with: +``` +conda env create -f environment.yml +``` + +Once it's installed you can change to the recently created `moulder` +environment with: + +``` +source activate moulder +``` + +# Running + +In order to run `Moulder`, just run: + +``` +python moulder.py +``` + +in the `moulder` directory.