-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restructure installation instructions to clone first
- Loading branch information
Showing
2 changed files
with
4 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,12 @@ Tooling for connecting GitLab, pipelines, and SODAR at CUBI. | |
|
||
## Getting Started | ||
|
||
Prerequisites when using conda: | ||
Clone CUBI-TK, create a conda environment (containing `hashdeep`) and install using [`uv`](https://docs.astral.sh/uv/). | ||
|
||
```bash | ||
$ git clone [email protected]:bihealth/cubi-tk.git | ||
$ conda env create -n cubi-tk -f environment.yaml | ||
$ conda activate cubi-tk | ||
``` | ||
|
||
Clone CUBI-TK and install. | ||
|
||
```bash | ||
$ git clone [email protected]:bihealth/cubi-tk.git | ||
$ cd cubi-tk | ||
$ uv python pin 3.12 | ||
$ uv sync | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,13 @@ | |
Installation | ||
============ | ||
|
||
Prerequisites when using conda: | ||
Clone CUBI-TK, create a conda environment (containing `hashdeep`) and install using [`uv`](https://docs.astral.sh/uv/). | ||
|
||
.. code-block:: bash | ||
$ git clone [email protected]:bihealth/cubi-tk.git | ||
$ conda env create -n cubi-tk -f environment.yaml | ||
$ conda activate cubi-tk | ||
Clone CUBI-TK and install: | ||
|
||
.. code-block:: bash | ||
$ git clone [email protected]:bihealth/cubi-tk.git | ||
$ cd cubi-tk | ||
$ uv python pin 3.12 | ||
$ uv sync | ||
|