Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 865 Bytes

README.md

File metadata and controls

49 lines (32 loc) · 865 Bytes

Notes

Alpine container with LaTeX and neovim installation.

Build

Build docker image.

docker build -t latex .
docker build --build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) -t latex .

Run

Start latex docker image.

docker run -it --rm -v "$(pwd):/app" --name maths latex

Python Environment

Use python environment for generating graph and experiments. Requires venv.

python3 -m venv .venv

Activate it by using the script inside the .venv directory.

.venv/Script/activate.sh

Install packages from the requirements.txt

pip install -r ./requirements.txt 

Resources