Changes
Page history
Update Installing MKBDR
authored
Mar 31, 2021
by
peguerin
Show whitespace changes
Inline
Side-by-side
Installing-MKBDR.md
View page @
26861a6a
...
...
@@ -23,7 +23,7 @@ git clone https://gitlab.mbb.univ-montp2.fr/edna/custom_reference_database.git
cd custom_reference_database
```
Build MKBDR
locally
:
Build MKBDR
and install all required dependencies from Python Package Index
:
```
pip3 install .
```
...
...
@@ -32,6 +32,17 @@ pip3 install .
### Using conda
Load and create conda environment with all required dependencies:
```
curl https://gitlab.mbb.univ-montp2.fr/edna/custom_reference_database/-/raw/master/envs/mkbdr_dep.yaml
conda env create -f mkbdr_dep.yaml
```
Activate the conda environment with required dependencies and install MKBDR
```
conda activate mkbdr_dep
pip3 install .
```
...
...
...
...