From a9d93dff85ad14b93cd861a9d8aa4c1be5be9d42 Mon Sep 17 00:00:00 2001 From: "E. Joshua Rigler" <erigler@usgs.gov> Date: Wed, 28 Feb 2024 13:03:19 -0700 Subject: [PATCH] Forgot to save poetry usage examples --- docs/develop.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/develop.md b/docs/develop.md index 0bae5356..932d5ed7 100644 --- a/docs/develop.md +++ b/docs/develop.md @@ -29,9 +29,16 @@ This project maintains a pyproject.toml file, and uses the `poetry` package (https://github.com/python-poetry/poetry) to manage its python-only dependencies in project-specific virtual environements. + cd geomag-algorithms + poetry install + poetry run command-in-env + + ...or... + cd geomag-algorithms poetry install poetry shell + (shell-inside-env) > command-in-env > `pyenv` is useful for installing specific/multiple versions of python > -- GitLab