|
a/README.md |
|
b/README.md |
1 |
# Quantum-enabled multi-omics analysis |
1 |
# Quantum-enabled multi-omics analysis |
2 |
|
2 |
|
3 |
 |
3 |
 |
4 |
|
4 |
|
5 |
## Schedule |
5 |
## Schedule |
6 |
|
6 |
|
7 |
 |
7 |
 |
8 |
|
8 |
|
9 |
### Prerequisites |
9 |
### Prerequisites
|
10 |
To start with the tutorial and use the notebooks you will need to create an environment |
10 |
To start with the tutorial and use the notebooks you will need to create an environment |
11 |
|
11 |
|
12 |
1. Create the environment from the `req.txt` file: |
12 |
1. Create the environment from the `req.txt` file:
|
13 |
``` |
13 |
```
|
14 |
conda create -n "QML" |
14 |
conda create -n "QML"
|
15 |
pip install -r req.txt |
15 |
pip install -r req.txt
|
16 |
``` |
16 |
```
|
17 |
* Note: if you receive the error `bash: conda: command not found...`, you need to install Anaconda to your development environment (see "Additional resources" below) |
17 |
* Note: if you receive the error `bash: conda: command not found...`, you need to install Anaconda to your development environment (see "Additional resources" below) |
18 |
|
18 |
|
19 |
2. Activate the new environment: |
19 |
2. Activate the new environment:
|
20 |
``` |
20 |
```
|
21 |
conda activate QML |
21 |
conda activate QML
|
22 |
``` |
22 |
```
|
23 |
3. Verify that the new environment was installed correctly: |
23 |
3. Verify that the new environment was installed correctly:
|
24 |
``` |
24 |
```
|
25 |
conda env list |
25 |
conda env list
|
26 |
``` |
26 |
``` |
27 |
|
27 |
|