Skip to content

Installation

Robert Krueger edited this page Oct 5, 2021 · 14 revisions

For End Users

Download latest release and execute it. This will start a local server on your machine. Open the browser and navigate to: http://mts-lsp-l06208:8000/ . To import a dataset, follow the import instructions.

For Developers

3. Conda Install Instructions.

Install Conda
  • Install miniconda or conda.
  • Create env: conda env create -f requirements.yml
Activate Environment
  • Active environment: conda activate minerva_analysis
Start the Server
  • python run.py - Runs the webserver
Start the Server
  • Access the tool via http://localhost:8000/

(4. Node.js installation and packages)

This step is only needed when you plan to edit js code. The codebase already included bundled js files.

  • Install Node.js, then navigate to /minerva_analysis/client and run npm install to install all packages listed in package.json.
  • Run npm run start to package the Javascript, or run npm run watch if you plan on editing dependencies

Packaging/Bundling Code as Executable (for Developers)

Windows
  • Create alternative conda env without mkl: conda create --name [name] nomkl
  • Active environment: conda activate [name]
  • Run pip install -r requirements.txt
  • Run package_win.bat
MacOS
  • Create env: conda env create -f requirements.yml
  • Active environment: conda activate minerva_analysis
  • Run bash package_mac.sh