Skip to content
This repository was archived by the owner on Oct 29, 2025. It is now read-only.

Development

skoulouzis edited this page Nov 7, 2022 · 25 revisions
  1. Create conda venv
  2. Install requirements in conda
  3. Install nodejs dependencies
  4. make build-frontend
  5. make build-frontend && make install-ui && make link-ui
  6. make install-backend
  7. jupyter lab build
  8. Restart jupyter jupyter lab --debug

Getting started

Install Requirements:

Install Anaconda from these instructions: https://linuxize.com/post/how-to-install-anaconda-on-ubuntu-20-04/

Close the terminal and start a new one to activate conda.

Create and activate conda environment:

conda env create -f environment.yml
conda activate jupyterlab

Clone project:

git clone https://github.com/QCDIS/NaaVRE.git

Create and checkout branch:

cd NaaVRE
git branch <BRANCH_NAME>
git checkout <BRANCH_NAME>

Go to the project folder and build the backend :

make install-backend

Build the frontend:

make build-frontend
make install-ui

Build the extension and start a jupyterlab instance:

jupyter lab build && jupyter lab --debug --watch

Build wheel file for release:

make release

Clone this wiki locally