Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.29 KB

README.md

File metadata and controls

58 lines (38 loc) · 1.29 KB

rscu - Raspberry Shake Charting Utility

written and contributed by David Fowler

About

rscu (pronounced "rascue") is a GUI-based charting utility built to make custom plotting of Raspberry Shake data easier.

Installation

via Anaconda/Miniconda (recommended)

Download and install Miniconda3

  1. In a Terminal (Mac OS or Linux) or Anaconda Prompt (Windows), tell conda to update itself:

    conda update conda -y
    
  2. Next, tell conda to create an environment with the proper requirements, and activate it:

    conda create --name rscu obspy
    conda activate rscu
    
  3. Now, install rscu directly from github (you may need git for this):

    pip install git+https://github.com/raspishake/rscu
    
  4. You're ready to run rscu!

    rscu
    

on Debian Linux without Anaconda

  1. Install requirements via apt and pip

    sudo apt install python3-numpy python3-lxml python3-pip
    pip install obspy
    
  2. Now, install rscu directly from github (you may need git for this):

    pip install git+https://github.com/raspishake/rscu
    
  3. You're ready to run rscu!

    rscu