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
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,9 +158,7 @@ If you encounter any issues or have suggestions for improvements, please open an
158
158
## Contribute
159
159
160
160
### Installing in editable mode
161
-
For developing it is recommended to install `poetry`, which can be installed via:
162
-
```bash
163
-
pip install poetry
161
+
For developing it is recommended to install [`poetry`](https://python-poetry.org/). An installation guide can be found [here](https://python-poetry.org/docs/#installation).
164
162
165
163
For development it is best to install the packages in editable mode.
166
164
You can install a single package in editable mode using the following command:
@@ -181,6 +179,9 @@ If you want to install all services in editable mode, as well as the dev-depende
181
179
```bash
182
180
make install-dev
183
181
```
182
+
When using the `make install-dev` command it is important to prevent `poetry` from creating a different environment for every package.
183
+
This can be achieved by running `poetry config virtualenvs.create false`, but there are multiple way to achieve this, it is best to consult the [poetry docs](https://python-poetry.org/docs/configuration/) to see which option fits best for you.
0 commit comments