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
Also in poetry, the above only installs the packages for **Pirate**. If you also want to use the **Miner** or the **DicomDownloader**, then you need to install them as extra dependencies with
103
+
Also in uv, the above only installs the packages for **Pirate**. If you also want to use the **Miner** or the **DicomDownloader**, then you need to install them as extra dependencies with
121
104
122
105
```bash
123
-
poetry add "fhir-pyrate[miner]"# only for miner
124
-
poetry add "fhir-pyrate[downloader]"# only for downloader
125
-
poetry add "fhir-pyrate[all]"# for both
106
+
uv add "fhir-pyrate[miner]"# only for miner
107
+
uv add "fhir-pyrate[downloader]"# only for downloader
108
+
uv add "fhir-pyrate[all]"# for both
126
109
```
127
110
128
-
or by adding the following to your `pyproject.toml` file:
111
+
The extras can be combined with the GitHub source as well:
0 commit comments