stuff-from-scratch/infra/src/ntk_infra
2022-11-30 13:45:59 +00:00
..
__init__.py Add initial infra 2022-11-30 13:45:59 +00:00
podman_interface.py Add initial infra 2022-11-30 13:45:59 +00:00
README.md Add initial infra 2022-11-30 13:45:59 +00:00
requirements.txt Add initial infra 2022-11-30 13:45:59 +00:00

ntk_infra

This is a collection of Python tools to support building the Notes Toolkit (NotesTK) project.

Setup

Add ~/.local/bin to PATH, i.e. in ~/.bashrc add export PATH=$PATH:~/.local/bin and do source ~/.bashrc.

Set up virtual environment:

sudo apt-get install python3-pip python3-venv
python3 -m venv $MY_ENV_PATH
source $MY_ENV_PATH/bin/activate

When finished do:

deactivate

Install requirements:

pip install -r requirements.txt