You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Make sure you have set up the repositories and Python environment according to the [top-level instructions](https://github.com/open-crs#requirements).
35
+
That is:
36
+
37
+
- Docker is installed and is properly running.
38
+
Check using:
39
+
40
+
```console
41
+
docker version
42
+
docker ps -a
43
+
docker run --rm hello-world
44
+
```
45
+
46
+
These commands should run without errors.
47
+
48
+
- The current module repository and all other module repositories (particularly the [`zeratool_lib` repository](https://github.com/open-crs/zeratool_lib) and the [`commons` repository](https://github.com/open-crs/commons)) are cloned in the same directory.
49
+
50
+
- You are running all commands inside a Python virtual environment.
51
+
There should be `(.venv)` prefix to your prompt.
52
+
53
+
- You have installed Poetry in the virtual environment.
54
+
If you run:
55
+
56
+
```console
57
+
which poetry
58
+
```
59
+
60
+
you should get a path ending with `.venv/bin/poetry`.
0 commit comments