Skip to content

Latest commit

 

History

History
135 lines (96 loc) · 2.61 KB

quick-start.md

File metadata and controls

135 lines (96 loc) · 2.61 KB
description
Installation of the app

👊 Quick start

Automatic installation

Below are tutorials for downloading and installing the app on various operating systems.

{% tabs %} {% tab title="Windows" %} {% embed url="https://youtu.be/i6w9op4iNk8" %} {% endtab %}

{% tab title="Ubuntu" %} {% embed url="https://youtu.be/p4oq58PLA28" %} {% endtab %}

{% tab title="MacOS" %} {% hint style="warning" %} This tutorial is for MEDomicsLab (the parent app) and will be updated soon, but the instructions remain the same. However, please use the following link to download the assets for the MEDimage-app: MEDimage-app release. {% endhint %}

{% embed url="https://www.youtube.com/watch?ab_channel=MEDomicsLab&v=J9wq_C6PHK0" %} {% endtab %} {% endtabs %}

Manual installation

To manually download, install, and start using the application, please follow these steps:

Cloning the project

Via SSH (recommended)

git clone -b develop git@github.com:MEDomics-UdeS/MEDimage-app.git

Via HTTPS

git clone -b develop https://github.com/MEDomics-UdeS/MEDimage-app.git

Installing npm package

Access the cloned folder

cd <.../MEDimage-app/>

Install npm packages

npm install

Building go server files

Manually

cd go_server
go build main.go

or automatically, by running the following script

{% tabs %} {% tab title="Windows" %}

.\utilScripts\pack_GO.bat

{% endtab %}

{% tab title="Ubuntu" %}

bash utilScripts/pack_GO_linux.sh

{% endtab %}

{% tab title="MacOS" %}

bash utilScripts/pack_GO_mac.sh

{% endtab %} {% endtabs %}

Set up the python environment, by running the following script

{% tabs %} {% tab title="Windows" %}

.\pythonEnv\create_conda_env_win.bat

{% endtab %}

{% tab title="Ubuntu" %} Run the following script

bash pythonEnv/create_conda_env_linux.sh

{% endtab %}

{% tab title="macOS" %}

zsh pythonEnv/create_conda_env_mac.sh

{% endtab %} {% endtabs %}

This will create a conda environment named med_conda_env and install the required packages.


When developing python code, you may need to install new packages. To do so, you can activate the environment and install any package with pip:

conda activate med_conda_env
pip install <package_name>

RUN THE APP

npm run dev

Now that the app is live and running, it is time to learn how to use the interface, see you on the next page 😉