Skip to content
Snippets Groups Projects
Commit a74a9f46 authored by Carsten Hinz's avatar Carsten Hinz
Browse files

added jupyter as dependency

added info how to run scripts/notebooks with poetry
parent 7453306a
No related branches found
No related tags found
2 merge requests!11Creation of first beta release version,!1added jupyter as dependency
......@@ -35,10 +35,20 @@ git checkout dev
## Installing Dependencies
The handling of required packages is done with poetry. So run poetry in the project directory:
The handling of required packages is done with poetry (https://python-poetry.org/).
After installing poetry, you can simply install all required dependencies for this project by runing poetry in the project directory:
```
poetry install
```
This also leads to a creation of a virtual enviorment.Virtual enviorment are designed to ensure, that different projects do not interfere with their dependencies.
To run a script or a jupyter notebook in the virtual enviorment simply run
```
poetry run jupyter notebook
```
or
```
poetry run python [/path/to/scriptname.py]
```
# How does this tool work?
......
......@@ -20,6 +20,7 @@ ipykernel = "^6.26.0"
compliance-checker = "^5.1.0"
cartopy = "^0.22.0"
ruff = "^0.1.13"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment