Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 2.1 KB

installation.md

File metadata and controls

48 lines (40 loc) · 2.1 KB

Installation

This document provides installation instructions, for usage instructions see tutorial.

Prerequisites

RAPIDKRILL requires Python 3.6. Follow installation instructions for Linux, Mac OS, or Windows, if you have not installed yet.

RapidKrill setup

The recommended means of installation is by cloning the git repository. If you don't already have git installed, follow the instructions here.

By convention, we keep code in a src directory:

# Linux & Mac OS:
mkdir ~/src
cd ~/src
git clone https://github.com/bas-acoustics/rapidkrill.git

# Windows:
mkdir C:\src
cd C:\src
git clone https://github.com/bas-acoustics/rapidkrill.git

RapidKrill dependencies

The RAPIDKRILL dependencies are listed in requirements.txt and includes the following packages:

The dependencies can be installed in a number of different ways depending on your system and preferences. For example, using pip command:

# Linux & Mac OS
cd ~/src/rapidkrill
pip install -r requirements.txt

# Windows
cd C:\src\rapidkrill
pip install -r requirements.txt

If you haven't installed pip yet. Follow these instructions.